| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Shaarli\Front\Exception; |
| 6 | |
| 7 | /** |
| 8 | * Class UnauthorizedException |
| 9 | * |
| 10 | * Exception raised if the user tries to access a ShaarliAdminController while logged out. |
| 11 | */ |
| 12 | class UnauthorizedException extends \Exception |
| 13 | { |
| 14 | |
| 15 | } |