public static void error(Component parentComponent, Exception e) {
if (_exceptionHandlerList != null && _exceptionHandlerList.size() != 0) {
Iterator it = _exceptionHandlerList.listIterator();
while (it.hasNext()) {
ExceptionHandler handler = (ExceptionHandler) it.next();
if (handler.handleException(e)) {
return;
}
}
}