Documentation ¶
Index ¶
- Variables
- func New400Response(msg string) error
- func New500Response(msg string) error
- func NewResponse(code int, msg string, status ...int) error
- func Wrap400Response(err error, msg ...string) error
- func Wrap500Response(err error, msg ...string) error
- func WrapResponse(err error, code int, msg string, status ...int) error
- type ResponseError
Constants ¶
This section is empty.
Variables ¶
View Source
var ( New = errors.New Wrap = errors.Wrap Wrapf = errors.Wrapf WithStack = errors.WithStack WithMessage = errors.WithMessage WithMessagef = errors.WithMessagef )
定义别名
View Source
var ( ErrBadRequest = New400Response("请求发生错误") ErrInvalidParent = New400Response("无效的父级节点") ErrNotAllowDeleteWithChild = New400Response("含有子级,不能删除") ErrNotAllowDelete = New400Response("资源不允许删除") ErrInvalidUserName = New400Response("无效的用户名") ErrInvalidPassword = New400Response("无效的密码") ErrInvalidUser = New400Response("无效的用户") ErrUserDisable = New400Response("用户被禁用,请联系管理员") ErrNoPerm = NewResponse(401, "无访问权限", 401) ErrInvalidToken = NewResponse(9999, "令牌失效", 401) ErrNotFound = NewResponse(404, "资源不存在", 404) ErrMethodNotAllow = NewResponse(405, "方法不被允许", 405) ErrTooManyRequests = NewResponse(429, "请求过于频繁", 429) ErrInternalServer = NewResponse(500, "服务器发生错误", 500) )
定义错误
Functions ¶
func Wrap400Response ¶
Wrap400Response 包装错误码为400的响应错误
func Wrap500Response ¶
Wrap500Response 包装错误码为500的响应错误
Types ¶
type ResponseError ¶
type ResponseError struct { Code int // 错误码 Message string // 错误消息 StatusCode int // 响应状态码 ERR error // 响应错误 }
ResponseError 定义响应错误
func (*ResponseError) Error ¶
func (r *ResponseError) Error() string
Click to show internal directories.
Click to hide internal directories.