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