request is for an unknown service
| 20 | |
| 21 | // request is for an unknown service |
| 22 | type methodNotFoundError struct { |
| 23 | service string |
| 24 | method string |
| 25 | } |
| 26 | |
| 27 | func (e *methodNotFoundError) ErrorCode() int { return -32601 } |
| 28 |
nothing calls this directly
no outgoing calls
no test coverage detected