Package de.innovationgate.ext.org.mozilla.javascript

Examples of de.innovationgate.ext.org.mozilla.javascript.RhinoException


        }

        if (throwable != null) {

            if (throwable instanceof RhinoException) {
                RhinoException rhinoEx = (RhinoException) throwable;
                if (rhinoEx.lineNumber() != 0) {
                    msg += ". Line Number " + rhinoEx.lineNumber();
                }

                if (rhinoEx.lineSource() != null) {
                    msg += ". Line source: " + rhinoEx.lineSource();
                }
            }

            theLog.error(msg, throwable);
           
View Full Code Here

TOP

Related Classes of de.innovationgate.ext.org.mozilla.javascript.RhinoException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.