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
This is
CasWebflowExceptionHandler.- Since:
- 6.1.0
-
Field Summary
FieldsFields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.webflow.execution.EventHandle event.booleanSupports exception.Methods inherited from interface org.springframework.core.Ordered
getOrder
-
Field Details
-
UNKNOWN
Unknown event id, principal or action.- See Also:
-
-
Method Details
-
handle
org.springframework.webflow.execution.Event handle(T exception, org.springframework.webflow.execution.RequestContext requestContext) throws Throwable Handle event.- Parameters:
exception- the exceptionrequestContext- 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 exceptionrequestContext- the request context- Returns:
- true /false
- Throws:
Throwable- the throwable
-