diff options
Diffstat (limited to 'main/app/sprinkles/account/src/Authenticate/Exception/AuthCompromisedException.php')
-rw-r--r-- | main/app/sprinkles/account/src/Authenticate/Exception/AuthCompromisedException.php | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/main/app/sprinkles/account/src/Authenticate/Exception/AuthCompromisedException.php b/main/app/sprinkles/account/src/Authenticate/Exception/AuthCompromisedException.php deleted file mode 100644 index dd169bd..0000000 --- a/main/app/sprinkles/account/src/Authenticate/Exception/AuthCompromisedException.php +++ /dev/null @@ -1,21 +0,0 @@ -<?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';
-}
|