]> BookStack Code Mirror - bookstack/blob - app/Exceptions/UnauthorizedException.php
Code cleanup, bug squashing
[bookstack] / app / Exceptions / UnauthorizedException.php
1 <?php
2
3 namespace BookStack\Exceptions;
4
5 use Exception;
6
7 class UnauthorizedException extends Exception
8 {
9
10     /**
11      * ApiAuthException constructor.
12      */
13     public function __construct($message, $code = 401)
14     {
15         parent::__construct($message, $code);
16     }
17 }