Searched refs:addCatchClause (Results 1 – 2 of 2) sorted by relevance
1355 code.addCatchClause(TypeId.get(IllegalArgumentException.class), catchIae); in testCatchExceptions()1356 code.addCatchClause(TypeId.get(IllegalStateException.class), catchIse); in testCatchExceptions()1357 code.addCatchClause(TypeId.get(RuntimeException.class), catchRe); in testCatchExceptions()1434 code.addCatchClause(iaeType, catchOuter); in testNestedCatchClauses()1441 code.addCatchClause(iaeType, catchInner); in testNestedCatchClauses()1444 code.addCatchClause(iaeType, previousLabel); in testNestedCatchClauses()
363 public void addCatchClause(TypeId<? extends Throwable> toCatch, Label catchClause) { in addCatchClause() method in Code