| @@ 192-193 (lines=2) @@ | ||
| 189 | 'Invalid arguments: ' . $body['error']['message'], |
|
| 190 | $body['error']['code'] |
|
| 191 | ); |
|
| 192 | case -32603: |
|
| 193 | throw new \RuntimeException( |
|
| 194 | 'Internal Error: ' . $body['error']['message'], |
|
| 195 | $body['error']['code'] |
|
| 196 | ); |
|
| @@ 197-198 (lines=2) @@ | ||
| 194 | 'Internal Error: ' . $body['error']['message'], |
|
| 195 | $body['error']['code'] |
|
| 196 | ); |
|
| 197 | default: |
|
| 198 | throw new \RuntimeException( |
|
| 199 | 'Invalid request/response: ' . $body['error']['message'], |
|
| 200 | $body['error']['code'] |
|
| 201 | ); |
|