1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-21 23:33:18 +00:00

Update app.go

This commit is contained in:
Fenny 2020-06-06 20:42:55 +02:00
parent f0a9846bf0
commit 9fec4c7820

6
app.go
View File

@ -54,12 +54,12 @@ type App struct {
type Settings struct {
// ErrorHandler is executed when you pass an error in the Next(err) method
// This function is also executed when middleware.Recover() catches a panic
// Default: func(ctx *Ctx, err error) {
// Default: func(ctx *Ctx) {
// code := StatusInternalServerError
// if e, ok := err.(*Error); ok {
// if e, ok := ctx.Error().(*Error); ok {
// code = e.Code
// }
// ctx.Status(code).SendString(err.Error())
// ctx.Status(code).SendString(ctx.Error().Error())
// }
ErrorHandler Handler