for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\LaravelAuth\Exceptions;
use Illuminate\Database\Eloquent\ModelNotFoundException;
/**
* Class UserAlreadyConfirmedException
*
* @package Arcanedev\LaravelAuth\Exceptions
* @author ARCANEDEV <[email protected]>
*/
class UserConfirmationException extends ModelNotFoundException
{
/* -----------------------------------------------------------------
| Setters & Getters
| -----------------------------------------------------------------
* Set the affected Eloquent model.
* @param string $model
* @param array $ids
* @return self
public function setModel($model, $ids = [])
parent::setModel($model);
$this->message = 'Unconfirmed user was not found.';
return $this;
}