} catch (ClassNotFoundException e) {
log.error("omitting exception-handler, could not load "+exceptionClassName);
return;
}
try {
ExceptionHandler handler = (ExceptionHandler) handlerClass.newInstance();
handler.init(new HandlerConfigImp(exceptionHandlerRes,
this));
exceptionHandlers.put(exceptionClass, handler);
} catch (InstantiationException e) {
log.error("omitting exception-handler, could not load "+exceptionClassName, e);
return;