You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ntool-biz/core/nstatus/api_err.go

38 lines
912 B
Go

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package nstatus
import "git.noahlan.cn/noahlan/ntool-biz/core/nstatus/code"
// NewApiErr 构建Api错误code为http状态码
func NewApiErr(code int, message string) error {
return NewResult(code, message, ApiErr)
}
// NewApiErrNoMsg 构建Api错误空错误消息
func NewApiErrNoMsg(code int) error {
return NewApiErr(code, "")
}
func NewApiInternalErr(msg string) error {
return NewApiErr(code.StatusInternalServerError, msg)
}
func NewApiBadRequestErr(msg string) error {
return NewApiErr(code.StatusBadRequest, msg)
}
func NewApiUnauthorizedErr(msg string) error {
return NewApiErr(code.StatusUnauthorized, msg)
}
func NewApiForbiddenErr(msg string) error {
return NewApiErr(code.StatusForbidden, msg)
}
func NewApiNotFoundErr(msg string) error {
return NewApiErr(code.StatusNotFound, msg)
}
func NewApiBadGatewayErr(msg string) error {
return NewApiErr(code.StatusBadGateway, msg)
}