| @@ 211-212 (lines=2) @@ | ||
| 208 | 'Invalid arguments: ' . $body['error']['message'], |
|
| 209 | $body['error']['code'] |
|
| 210 | ); |
|
| 211 | case -32603: |
|
| 212 | throw new \RuntimeException( |
|
| 213 | 'Internal Error: ' . $body['error']['message'], |
|
| 214 | $body['error']['code'] |
|
| 215 | ); |
|
| @@ 216-217 (lines=2) @@ | ||
| 213 | 'Internal Error: ' . $body['error']['message'], |
|
| 214 | $body['error']['code'] |
|
| 215 | ); |
|
| 216 | default: |
|
| 217 | throw new \RuntimeException( |
|
| 218 | 'Invalid request/response: ' . $body['error']['message'], |
|
| 219 | $body['error']['code'] |
|
| 220 | ); |
|