Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class JsonRpcInternalErrorException extends JsonRpcException |
||
8 | { |
||
9 | const CODE = -32603; |
||
10 | |||
11 | /** |
||
12 | * @deprecated no longer in use, will be removed at next major release. |
||
13 | */ |
||
14 | const DATA_PREVIOUS_KEY = 'previous'; |
||
15 | |||
16 | /** |
||
17 | * @param \Throwable|null $previousException |
||
18 | */ |
||
19 | 8 | public function __construct(\Throwable $previousException = null) |
|
29 |