18 lines
246 B
Go
18 lines
246 B
Go
|
package endpoint
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
type HandlerError struct {
|
||
|
Status int
|
||
|
Message string
|
||
|
Err error
|
||
|
}
|
||
|
|
||
|
func (e *HandlerError) Error() string {
|
||
|
if e.Err != nil {
|
||
|
return fmt.Sprintf("%s: %s", e.Message, e.Err.Error())
|
||
|
}
|
||
|
|
||
|
return e.Message
|
||
|
}
|