package netscape.javascript;

public class JSException extends RuntimeException {
    public JSException(String msg) {
        super(msg);
    }
}