Interface DispatcherErrorHandler

All Known Implementing Classes:
DefaultDispatcherErrorHandler

public interface DispatcherErrorHandler
Implementation of this interface is used to handle internal errors or missing resources. Basically it sends back HTTP error codes or error page depends on requirements.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handleError(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, int code, Exception e)
    Handle passed error code or exception
    void
    init(jakarta.servlet.ServletContext ctx)
    Init instance after creating Dispatcher
  • Method Details

    • init

      void init(jakarta.servlet.ServletContext ctx)
      Init instance after creating Dispatcher
      Parameters:
      ctx - current ServletContext
    • handleError

      void handleError(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, int code, Exception e)
      Handle passed error code or exception
      Parameters:
      request - current HttpServletRequest
      response - current HttpServletResponse
      code - HTTP Error Code, see HttpServletResponse for possible error codes
      e - Exception to report