(msg string, args ...interface{})
| 10 | func (e Error) Error() string { return string(e) } |
| 11 | |
| 12 | func Errorf(msg string, args ...interface{}) Error { |
| 13 | return Error(fmt.Sprintf(msg, args...)) |
| 14 | } |
| 15 | |
| 16 | const ( |
| 17 | // ErrNoTopic is returned when a request needs to be sent to a specific. |
no test coverage detected