HandleContextError completes the ErrorHandler interface.
(ctx *Context, err error)
| 4272 | |
| 4273 | // HandleContextError completes the ErrorHandler interface. |
| 4274 | func (h ErrorHandlerFunc) HandleContextError(ctx *Context, err error) { |
| 4275 | h(ctx, err) |
| 4276 | } |
| 4277 | |
| 4278 | func (ctx *Context) handleContextError(err error) { |
| 4279 | if err == nil { |