1 package polyglot.ext.coffer.types;2 3 import polyglot.types.*;4 5 public interface ThrowConstraint {6 public KeySet keys();7 public ThrowConstraint keys(KeySet keys);8 public Type throwType();9 public ThrowConstraint throwType(Type throwType);10 }11