MCPcopy Create free account
hub / github.com/koding/kite / MethodNotFoundError

Struct MethodNotFoundError

dnode/errors.go:9–12  ·  view source on GitHub ↗

MethodNotFoundError is returned when there is no registered handler for received method.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected