Class ScriptCompilationException

    • Constructor Detail

      • ScriptCompilationException

        public ScriptCompilationException​(String msg,
                                          Throwable cause)
        Constructor for ScriptCompilationException.
        Parameters:
        msg - the detail message
        cause - the root cause (usually from using an underlying script compiler API)
      • ScriptCompilationException

        public ScriptCompilationException​(ScriptSource scriptSource,
                                          String msg)
        Constructor for ScriptCompilationException.
        Parameters:
        scriptSource - the source for the offending script
        msg - the detail message
        Since:
        4.2
      • ScriptCompilationException

        public ScriptCompilationException​(ScriptSource scriptSource,
                                          Throwable cause)
        Constructor for ScriptCompilationException.
        Parameters:
        scriptSource - the source for the offending script
        cause - the root cause (usually from using an underlying script compiler API)
      • ScriptCompilationException

        public ScriptCompilationException​(ScriptSource scriptSource,
                                          String msg,
                                          Throwable cause)
        Constructor for ScriptCompilationException.
        Parameters:
        scriptSource - the source for the offending script
        msg - the detail message
        cause - the root cause (usually from using an underlying script compiler API)
    • Method Detail

      • getScriptSource

        public ScriptSource getScriptSource()
        Return the source for the offending script.
        Returns:
        the source, or null if not available