2003/11/29 03:06:10
[org.ibex.core.git] / src / org / xwt / js / JSFunction.java
index a9164b8..c15ef55 100644 (file)
@@ -54,7 +54,7 @@ public class JSFunction extends JS implements ByteCodes, Tokens {
     }
 
     /** Note: code gets run in an <i>unpauseable</i> context. */
-    public Object call(Object a0, Object a1, Object a2, Object[] rest, int nargs) {
+    public Object call(Object a0, Object a1, Object a2, Object[] rest, int nargs) throws JSExn {
         JSArray args = new JSArray();
         if (nargs > 0) args.addElement(a0);
         if (nargs > 1) args.addElement(a1);