mirror of https://github.com/gin-gonic/gin.git
Adds IsType() helper
This commit is contained in:
parent
00b279c66b
commit
c0383dff6b
|
@ -76,6 +76,10 @@ func (msg *Error) Error() string {
|
|||
return msg.Err.Error()
|
||||
}
|
||||
|
||||
func (msg *Error) IsType(flags ErrorType) bool {
|
||||
return (msg.Type & flags) > 0
|
||||
}
|
||||
|
||||
// Returns a readonly copy filterd the byte.
|
||||
// ie ByType(gin.ErrorTypePublic) returns a slice of errors with type=ErrorTypePublic
|
||||
func (a errorMsgs) ByType(typ ErrorType) errorMsgs {
|
||||
|
|
Loading…
Reference in New Issue