HTTPNotFound simple notfound function for Context
(ctx Context)
| 687 | |
| 688 | // HTTPNotFound simple notfound function for Context |
| 689 | func HTTPNotFound(ctx Context) { |
| 690 | http.NotFound(ctx.Response().Writer(), ctx.Request().Request) |
| 691 | } |
| 692 | |
| 693 | // DefaultNotFoundHandler default exception handler |
| 694 | func DefaultNotFoundHandler(ctx Context) { |