Searched refs:toCatch (Results 1 – 1 of 1) sorted by relevance
363 public void addCatchClause(TypeId<? extends Throwable> toCatch, Label catchClause) { in addCatchClause() argument364 if (catchTypes.contains(toCatch)) { in addCatchClause()365 throw new IllegalArgumentException("Already caught: " + toCatch); in addCatchClause()368 catchTypes.add(toCatch); in addCatchClause()376 public Label removeCatchClause(TypeId<? extends Throwable> toCatch) { in removeCatchClause() argument377 int index = catchTypes.indexOf(toCatch); in removeCatchClause()379 throw new IllegalArgumentException("No catch clause: " + toCatch); in removeCatchClause()