/* */ {
/* 607 */ if (nodeExceptions.size() > foundExceptions.length) return false;
/* 608 */ for (Iterator it = nodeExceptions.iterator(); it.hasNext(); )
/* */ {
/* 610 */ boolean found = false;
/* 611 */ ASTException ex = (ASTException)it.next();
/* 612 */ for (int i = 0; i < foundExceptions.length; i++)
/* */ {
/* 614 */ if (!ex.getType().matches(foundExceptions[i].getName()))
/* */ continue;
/* 616 */ found = true;
/* 617 */ break;
/* */ }
/* */