HandlerExceptionResolver class
Abstract class to be implemented by objects than can resolve exceptions thrown during handler mapping or execution, in the typical case to error views.
- Implementers
Constructors
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
resolveError(
ForceRequest request, Model model, Error er) → String - Try to resolve the given exception that got thrown during on handler error, an error is different from an exception, it is an error that happens on runtime. returning a String that the viewname or return null if you want to return a json representation. @param request current Force Request, an encapsulated HttpRequest @param ex the exception that got thrown during handler execution @return a corresponding String that represents the viewname of your template
-
resolveException(
ForceRequest request, Model model, Exception ex) → String - Try to resolve the given exception that got thrown during on handler execution, returning a String that the viewname or return null if you want to return a json representation. @param request current Force Request, an encapsulated HttpRequest @param ex the exception that got thrown during handler execution @return a corresponding String that represents the viewname of your template
-
toString(
) → String -
A string representation of this object. [...]
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited