18 lines
254 B
Go
Raw Normal View History

2020-01-13 08:05:38 +00:00
package endpoint
import "fmt"
type HandlerError struct {
2020-01-18 23:30:09 +00:00
Status int
Message string
Err error
2020-01-13 08:05:38 +00:00
}
func (e *HandlerError) Error() string {
2020-01-18 23:30:09 +00:00
if e.Err != nil {
return fmt.Sprintf("%s: %s", e.Message, e.Err.Error())
}
2020-01-13 08:05:38 +00:00
2020-01-18 23:30:09 +00:00
return e.Message
2020-01-13 08:05:38 +00:00
}