(ctx *Context, err ErrViewNotExist)
| 3787 | // See FallbackView, FallbackViewLayout and FallbackViewFunc. |
| 3788 | type FallbackViewProvider interface { |
| 3789 | FallbackView(ctx *Context, err ErrViewNotExist) error |
| 3790 | } /* Notes(@kataras): If ever requested, this fallback logic (of ctx, error) can go to all necessary methods. |
| 3791 | I've designed with a bit more complexity here instead of a simple filename fallback in order to give |
| 3792 | the freedom to the developer to do whatever he/she wants with that template/layout not exists error, |
no outgoing calls
no test coverage detected