Class UncheckedCompilationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.uni_kiel.rz.fdr.repl.error.UncheckedCompilationException
All Implemented Interfaces:
Serializable

public class UncheckedCompilationException extends RuntimeException
Thrown when your Groovy code could not be compiled, e.g. due to syntax errors. This is an unchecked exception that you should only encounter wrapped in a checked exception.
See Also:
  • Constructor Details

    • UncheckedCompilationException

      public UncheckedCompilationException(String message)
      Create a new instance of the exception
      Parameters:
      message - The message.
    • UncheckedCompilationException

      public UncheckedCompilationException(String message, Throwable cause)
      Create a new instance of the exception
      Parameters:
      message - The message.
      cause - The cause.