use of org.apereo.cas.web.flow.AuthenticationExceptionHandler in project cas by apereo.
the class CasCoreAuthenticationSupportConfiguration method authenticationExceptionHandler.
@Bean
public AuthenticationExceptionHandler authenticationExceptionHandler() {
final AuthenticationExceptionHandler h = new AuthenticationExceptionHandler();
h.setErrors(casProperties.getAuthn().getExceptions().getExceptions());
return h;
}
Aggregations