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