(details?: string)
| 312 | } |
| 313 | |
| 314 | static methodNotFound(details?: string): RequestError { |
| 315 | return new RequestError(-32601, 'Method not found', details); |
| 316 | } |
| 317 | |
| 318 | static invalidParams(details?: string): RequestError { |
| 319 | return new RequestError(-32602, 'Invalid params', details); |