* @param originalException exception thrown by an authorizer
* @return the original exception if the default behavior was changed and the exception is unhandled
*/
protected RuntimeException handleAccessDeniedException(AccessDeniedException originalException)
{
ExceptionToCatchEvent exceptionToCatchEvent = new ExceptionToCatchEvent(originalException);
this.beanManager.fireEvent(exceptionToCatchEvent);
return originalException;
}