blob: e79ceb57355d67cd7259aae1bb61b555cccec31f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?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;
/**
* Disabled account exception. Used when an account has been disabled.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class AccountDisabledException extends HttpException
{
protected $defaultMessage = 'ACCOUNT.DISABLED';
protected $httpErrorCode = 403;
}
|