mirror of https://github.com/gin-gonic/gin.git
Cosmetic changes
This commit is contained in:
parent
ffaf49da0e
commit
992b00f96a
17
errors.go
17
errors.go
|
@ -21,12 +21,15 @@ const (
|
||||||
ErrorTypeNu = 2
|
ErrorTypeNu = 2
|
||||||
)
|
)
|
||||||
|
|
||||||
// Used internally to collect errors that occurred during an http request.
|
type (
|
||||||
type Error struct {
|
Error struct {
|
||||||
Err error `json:"error"`
|
Err error `json:"error"`
|
||||||
Type int `json:"-"`
|
Type int `json:"-"`
|
||||||
Meta interface{} `json:"meta"`
|
Meta interface{} `json:"meta"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
errorMsgs []*Error
|
||||||
|
)
|
||||||
|
|
||||||
var _ error = &Error{}
|
var _ error = &Error{}
|
||||||
|
|
||||||
|
@ -69,8 +72,6 @@ func (msg *Error) Error() string {
|
||||||
return msg.Err.Error()
|
return msg.Err.Error()
|
||||||
}
|
}
|
||||||
|
|
||||||
type errorMsgs []*Error
|
|
||||||
|
|
||||||
func (a errorMsgs) ByType(typ int) errorMsgs {
|
func (a errorMsgs) ByType(typ int) errorMsgs {
|
||||||
if len(a) == 0 {
|
if len(a) == 0 {
|
||||||
return a
|
return a
|
||||||
|
|
Loading…
Reference in New Issue