switch core files over to baskets
[org.ibex.js.git] / src / org / ibex / js / JSExn.java
index 2251cef..3880858 100644 (file)
@@ -4,12 +4,12 @@
 
 package org.ibex.js; 
 
-import org.ibex.util.*; 
+import org.ibex.util.*;
 import java.io.*;
 
 /** An exception which can be thrown and caught by JavaScript code */
 public class JSExn extends Exception { 
-    private List backtrace = new ArrayList();
+    private Basket.List backtrace = new Basket.Array();
     private JS js; 
     public JSExn(String s) { this(Script.S(s)); }
     public JSExn(JS js) { this(js,null); }