01: package jsint;
02:
03: /**
04: A continuationException is thrown by a continuation. See U.callCC.
05: **/
06:
07: public class ContinuationException extends RuntimeException {
08: /** Clever performance trick i found in
09: http://docs.msdnaa.net/ark_new/Webfiles/WhitePapers/Babel01/bab12.pdf
10: **/
11: public Throwable fillInStackTrace() {
12: return this;
13: }
14: }
|