{
if (nodeExceptions.size() > foundExceptions.length) return false;
for (Iterator it = nodeExceptions.iterator(); it.hasNext();)
{
boolean found = false;
ASTException ex = (ASTException) it.next();
for (int i = 0; i < foundExceptions.length; i++)
{
if (ex.getType().matches(foundExceptions[i].getName()))
{
found = true;
break;
}
}