Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ServerErrorException extends OAuthServerException |
||
9 | { |
||
10 | public const ERROR_TYPE = 'server_error'; |
||
11 | |||
12 | /** |
||
13 | * ServerErrorException constructor. |
||
14 | * |
||
15 | * @param string $message |
||
16 | * @param string|null $hint |
||
17 | * @param \Exception|null $previous |
||
18 | * @param int $code |
||
19 | */ |
||
20 | 1 | public function __construct($message, $hint = null, \Exception $previous = null, $code = 0) |
|
25 |