Interface CasWebflowExceptionHandler<T extends Exception>

Type Parameters:
T - the type parameter
All Superinterfaces:
org.springframework.core.Ordered
All Known Implementing Classes:
DefaultCasWebflowAbstractTicketExceptionHandler, DefaultCasWebflowAuthenticationExceptionHandler, GenericCasWebflowExceptionHandler, GroovyCasWebflowAuthenticationExceptionHandler

public interface CasWebflowExceptionHandler<T extends Exception> extends org.springframework.core.Ordered
Since:
6.1.0
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Unknown event id, principal or action.

    Fields inherited from interface org.springframework.core.Ordered

    HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.webflow.execution.Event
    handle(T exception, org.springframework.webflow.execution.RequestContext requestContext)
    Handle event.
    boolean
    supports(Exception exception, org.springframework.webflow.execution.RequestContext requestContext)
    Supports exception.

    Methods inherited from interface org.springframework.core.Ordered

    getOrder
  • Field Details

  • Method Details

    • handle

      org.springframework.webflow.execution.Event handle(T exception, org.springframework.webflow.execution.RequestContext requestContext) throws Throwable
      Handle event.
      Parameters:
      exception - the exception
      requestContext - the request context
      Returns:
      the event
      Throws:
      Throwable - the throwable
    • supports

      boolean supports(Exception exception, org.springframework.webflow.execution.RequestContext requestContext) throws Throwable
      Supports exception.
      Parameters:
      exception - the exception
      requestContext - the request context
      Returns:
      true /false
      Throws:
      Throwable - the throwable