moved JSRuntimeExn into its own file to satisfy eclipse compiler
[org.ibex.js.git] / src / org / ibex / js / JSExn.java
index ff4abc5..1fda3c7 100644 (file)
@@ -51,13 +51,3 @@ public class JSExn extends Exception {
         }
     }
 } 
-
-/** should only be used for failed coercions */
-class JSRuntimeExn extends RuntimeException {
-    private Object js = null; 
-    public JSRuntimeExn(Object js) { this.js = js; } 
-    public String toString() { return "JSRuntimeExn: " + js; }
-    public String getMessage() { return toString(); }
-    public Object getObject() { return js; } 
-}
-