| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class JsonRpcParseErrorException extends JsonRpcException |
||
| 8 | { |
||
| 9 | const CODE = -32700; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @param string $content |
||
| 13 | * @param mixed $parseErrorCode |
||
| 14 | * @param mixed $parseErrorMessage |
||
| 15 | */ |
||
| 16 | public function __construct(string $content, $parseErrorCode = null, $parseErrorMessage = null) |
||
| 29 |