iris/x/errors/context_error_handler.go
Gerasimos (Makis) Maropoulos b2c37e17b4
add x/errors.RecoveryHandler
2024-01-10 22:17:58 +02:00

18 lines
632 B
Go

package errors
import "github.com/kataras/iris/v12/context"
// DefaultContextErrorHandler returns a context error handler
// which calls the HandleError on any incoming error when
// a rich rest response failed to be written to the client.
// Register it on Application.SetContextErrorHandler method.
var DefaultContextErrorHandler context.ErrorHandler = new(jsonErrorHandler)
type jsonErrorHandler struct{}
// HandleContextError completes the context.ErrorHandler interface. It's fired on
// rich rest response failures.
func (e *jsonErrorHandler) HandleContextError(ctx *context.Context, err error) {
HandleError(ctx, err)
}