tank/rest/web_error.go
2018-07-03 13:45:22 +08:00

11 lines
151 B
Go

package rest
type WebError struct {
Code int `json:"code"`
Msg string `json:"msg"`
}
func (this *WebError) Error() string {
return this.Msg
}