16 lines
189 B
Go
16 lines
189 B
Go
|
package v1
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
type Error struct {
|
||
|
StatusCode int
|
||
|
Status string
|
||
|
msg string
|
||
|
}
|
||
|
|
||
|
func (e Error) Error() string {
|
||
|
return fmt.Sprintf("%s: %s", e.Status, e.msg)
|
||
|
}
|