Error encapsulates the short and long errors.
| 36 | |
| 37 | // Error encapsulates the short and long errors. |
| 38 | type Error struct { |
| 39 | t ErrType |
| 40 | err error |
| 41 | } |
| 42 | |
| 43 | // Error returns the string error message. |
| 44 | func (e Error) Error() string { |
nothing calls this directly
no outgoing calls
no test coverage detected