KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > kawa > lang > CalledContinuation


1 package kawa.lang;
2
3 public class CalledContinuation extends RuntimeException JavaDoc
4 {
5   public Object JavaDoc[] values;
6   public Continuation continuation;
7
8   CalledContinuation (Object JavaDoc[] values, Continuation continuation)
9   {
10     super ("call/cc called");
11     this.values = values;
12     this.continuation = continuation;
13   }
14 }
15
Popular Tags