public ThrowBlock(Block exp) {
this.exp = exp;
}
public Next eval(final Env e, Continuation _) {
return new Next(exp,e,new Continuation() {
public Next receive(Object t) {
if (t==null) {
t = new NullPointerException();
}
if (!(t instanceof Throwable)) {