blob: bc42b62bd65deb9f69c2175eb99e7180a9d9dcf3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Sprinkle\Account\Authenticate\Exception;
use UserFrosting\Support\Exception\HttpException;
/**
* Invalid account exception. Used when an account has been removed during an active session.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class AccountInvalidException extends HttpException
{
protected $defaultMessage = 'ACCOUNT.INVALID';
protected $httpErrorCode = 403;
}
|