for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace mathewparet\LaravelInvites\Exceptions;
use Exception;
class AnEmailCanHaveOnlyOneInvitation extends Exception
{
public function __construct()
$this->message = 'An email ID can be invited only once.';
}