blob: df3efbeae88d1ee5aa4cc2625ff5eb36e9491292 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?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\ForbiddenException;
/**
* Compromised authentication exception. Used when we suspect theft of the rememberMe cookie.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class AuthCompromisedException extends ForbiddenException
{
protected $defaultMessage = 'ACCOUNT.SESSION_COMPROMISED';
}
|