Class ScriptException

All Implemented Interfaces:
Serializable

public class ScriptException extends RuntimeException
Represents an exception of some sort has occurred while loading or executing scripts.
Since:
14.1.1.0
Author:
mk 2019.07.26
See Also:
  • Constructor Details

    • ScriptException

      public ScriptException(String sMessage)
      Create an instance of ScriptException with the specified message.
      Parameters:
      sMessage - the detail message (which is saved for later retrieval by the Throwable.getMessage() method)
    • ScriptException

      public ScriptException(String sMessage, Throwable tCause)
      Create an instance of ScriptException with the specified message and cause.
      Parameters:
      sMessage - the detail message (which is saved for later retrieval by the Throwable.getMessage() method)
      tCause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown)