handleThrowable
public boolean handleThrowable(HttpServerExchange exchange,
javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response,
Throwable t)
Handles an exception. If this method returns true then the request/response cycle is considered to be finished, and no further action will take place, if this returns false then standard error page redirect will take place. The default implementation of this simply logs the exception and returns false, allowing error page and async context error handling to proceed as normal.
- Specified by:
handleThrowable
in interface ExceptionHandler
- Parameters:
exchange
- The exchange request
- The request response
- The response t
- The exception - Returns:
true
true if the error was handled by this method