Class ScriptEvaluationException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ScriptEvaluationException
    extends java.lang.Exception
    Signals an error during parsing/evaluation of a script. This can either be a syntax error in the script itself or an exception triggered by the methods it invoked.
    Version:
    $Id: ScriptEvaluationException.java 1194928 2011-10-29 16:37:19Z olamy $
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID
      The serial version identifier for this class.
    • Constructor Summary

      Constructors 
      Constructor Description
      ScriptEvaluationException​(java.lang.Throwable cause)
      Creates a new exception with the specified cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • serialVersionUID

        private static final long serialVersionUID
        The serial version identifier for this class.
        See Also:
        Constant Field Values
    • Constructor Detail

      • ScriptEvaluationException

        public ScriptEvaluationException​(java.lang.Throwable cause)
        Creates a new exception with the specified cause.
        Parameters:
        cause - The cause, may be null.