| 1 | <?php |
||
| 9 | class AccessDeniedHttpException extends HttpException |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @param string $message Error message |
||
| 13 | * @param int $code Internal code for the application error |
||
| 14 | * @param string $logLevel Log level of the error, from Psr\Log\LogLevel |
||
| 15 | */ |
||
| 16 | public function __construct(string $message, int $code = 0, string $logLevel = LogLevel::WARNING) |
||
| 20 | } |
||
| 21 |