MethodNotFoundError is returned when there is no registered handler for received method.
| 7 | // MethodNotFoundError is returned when there is no registered handler for |
| 8 | // received method. |
| 9 | type MethodNotFoundError struct { |
| 10 | Method string |
| 11 | Args *Partial |
| 12 | } |
| 13 | |
| 14 | func (e MethodNotFoundError) Error() string { |
| 15 | return fmt.Sprintf("Method not found: %s", e.Method) |
nothing calls this directly
no outgoing calls
no test coverage detected