if (config.getClassName() != null) {
clazz = context.getClassLoader().loadClass(config.getClassName());
} else {
clazz = SimpleExceptionHandler.class;
}
ExceptionHandler handler = (ExceptionHandler)clazz.newInstance();
handler.init(config, context);
handlers.put(config.getId(), handler);
}