24 lines
487 B
Go
24 lines
487 B
Go
|
package app
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"github.com/gofiber/fiber/v2"
|
||
|
)
|
||
|
|
||
|
func HandleError(c *fiber.Ctx, err error) error {
|
||
|
code := fiber.StatusInternalServerError
|
||
|
|
||
|
// Retrieve the custom status code if it's a *fiber.Error
|
||
|
var e *fiber.Error
|
||
|
if errors.As(err, &e) {
|
||
|
code = e.Code
|
||
|
}
|
||
|
|
||
|
// Set Content-Type: text/plain; charset=utf-8
|
||
|
c.Set(fiber.HeaderContentType, fiber.MIMETextPlainCharsetUTF8)
|
||
|
|
||
|
// Return status code with error message
|
||
|
return c.Status(code).SendString(err.Error())
|
||
|
|
||
|
}
|