* Initialize global exception handlers.
* @throws ServletException
*/
protected void initExceptionHandlers() throws Exception {
log.debug("Initializing exception handlers");
ExceptionHandlersConfig exceptionsConfig = config.getExceptionsConfig();
if (exceptionsConfig != null) {
Iterator exceptionConfigs = exceptionsConfig.getExceptionHandlerConfigs();
while (exceptionConfigs.hasNext()) {
addHandler((ExceptionHandlerConfig)exceptionConfigs.next());
}
}
ActionsConfig actionsConfig = this.config.getActionsConfig();