Error is an error returned by the API.
| 199 | |
| 200 | // Error is an error returned by the API. |
| 201 | type Error struct { |
| 202 | Type ErrorType |
| 203 | Msg string |
| 204 | Detail string |
| 205 | } |
| 206 | |
| 207 | func (e *Error) Error() string { |
| 208 | return fmt.Sprintf("%s: %s", e.Type, e.Msg) |
nothing calls this directly
no outgoing calls
no test coverage detected