Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class AccessDeniedHttpException extends Exception |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $lang = 'accessDeniedHttpException'; |
||
14 | |||
15 | /** |
||
16 | * FileNotFoundException constructor. |
||
17 | * |
||
18 | * @param string $message |
||
19 | * @param int $code |
||
20 | * @param Throwable|null $previous |
||
21 | */ |
||
22 | public function __construct($message = "Your access has been denied.You have limited authority for this section.", $code = 403, Throwable $previous = null) |
||
25 | } |
||
26 | } |