| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class JsonRpcInvalidParamsException extends JsonRpcException |
||
| 8 | { |
||
| 9 | const CODE = -32602; |
||
| 10 | |||
| 11 | const DATA_METHOD_KEY = 'method'; |
||
| 12 | const DATA_MESSAGE_KEY = 'message'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param string $method |
||
| 16 | * @param string $message |
||
| 17 | */ |
||
| 18 | 2 | public function __construct(string $method, string $message) |
|
| 30 |