ToolboxError is the interface all custom errors must satisfy
| 30 | |
| 31 | // ToolboxError is the interface all custom errors must satisfy |
| 32 | type ToolboxError interface { |
| 33 | error |
| 34 | Category() ErrorCategory |
| 35 | Error() string |
| 36 | Unwrap() error |
| 37 | } |
| 38 | |
| 39 | // Agent Errors return 200 to the sender |
| 40 | type AgentError struct { |
no outgoing calls
no test coverage detected