| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class ScimException extends \RuntimeException |
||
| 13 | { |
||
| 14 | public function __construct( |
||
| 15 | string $message = "", |
||
| 16 | private readonly int $statusCode = Response::HTTP_BAD_REQUEST, |
||
| 17 | ?Throwable $previous = null |
||
| 18 | ) { |
||
| 19 | parent::__construct($message, $statusCode, $previous); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getStatusCode(): int |
||
| 25 | } |
||
| 26 | } |
||
| 27 |