2003/12/13 00:38:34
[org.ibex.core.git] / src / org / xwt / js / JS.java
index f2a7c20..de0c5fc 100644 (file)
@@ -43,7 +43,8 @@ public class JS extends org.xwt.util.BalancedTree {
     public static class UnpauseCallback {
         Interpreter i;
         UnpauseCallback(Interpreter i) { this.i = i; }
-        public void unpause(Object o) throws PausedException, JSExn {
+        public void unpause(Object o) throws JSExn {
+            // FIXME: if o instanceof JSExn, throw it into the JSworld
             i.stack.push(o);
             i.resume();
         }