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

Struct CallbackNotFoundError

dnode/errors.go:20–23  ·  view source on GitHub ↗

CallbackNotFoundError is returned when there is no registered callback for received message.

Source from the content-addressed store, hash-verified

18// CallbackNotFoundError is returned when there is no registered callback for
19// received message.
20type CallbackNotFoundError struct {
21 ID uint64
22 Args *Partial
23}
24
25func (e CallbackNotFoundError) Error() string {
26 return fmt.Sprintf("Callback ID not found: %d", e.ID)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected