File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 99
99
100
100
// HTTPError represents an error that occurred while handling a request.
101
101
HTTPError struct {
102
- Code int `json:"code "`
102
+ Code int `json:"- "`
103
103
Message interface {} `json:"message"`
104
104
Internal error `json:"-"` // Stores the error returned by an external dependency
105
105
}
@@ -227,7 +227,7 @@ const (
227
227
228
228
const (
229
229
// Version of Echo
230
- Version = "4.1.6 "
230
+ Version = "4.1.8 "
231
231
website = "https://echo.labstack.com"
232
232
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
233
233
banner = `
@@ -349,12 +349,11 @@ func (e *Echo) DefaultHTTPErrorHandler(err error, c Context) {
349
349
} else {
350
350
he = & HTTPError {
351
351
Code : http .StatusInternalServerError ,
352
+ Message : http .StatusText (http .StatusInternalServerError ),
352
353
}
353
354
}
354
355
if e .Debug {
355
356
he .Message = err .Error ()
356
- } else {
357
- he .Message = http .StatusText (he .Code )
358
357
}
359
358
360
359
// Send response
You can’t perform that action at this time.
0 commit comments