Error Controller error
| 21 | |
| 22 | // Error Controller error |
| 23 | type Error struct { |
| 24 | code int |
| 25 | message string |
| 26 | } |
| 27 | |
| 28 | // NewError creates a new Error |
| 29 | func NewError(code int, message string) Error { |
nothing calls this directly
no outgoing calls
no test coverage detected