| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class UnauthorizedException extends AbstractException |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * UnauthorizedException constructor |
||
| 11 | * |
||
| 12 | * @param string|null $message |
||
| 13 | * @param int $statusCode |
||
| 14 | * @param \Throwable|null $previous |
||
| 15 | */ |
||
| 16 | 2 | public function __construct(string $message = null, int $statusCode = 401, Throwable $previous = null) |
|
| 21 |