Class CompilationFailureException

All Implemented Interfaces:
Serializable

public class CompilationFailureException extends ToolExecutionFailureException
An exception thrown when a compilation process executes but exits with a non-zero status.
See Also:
  • Constructor Details

    • CompilationFailureException

      public CompilationFailureException()
      Constructs a new CompilationFailureException instance. The message is left blank (null), and no cause is specified.
    • CompilationFailureException

      public CompilationFailureException(String msg)
      Constructs a new CompilationFailureException instance with an initial message. No cause is specified.
      Parameters:
      msg - the message
    • CompilationFailureException

      public CompilationFailureException(Throwable cause)
      Constructs a new CompilationFailureException instance with an initial cause. If a non-null cause is specified, its message is used to initialize the message of this CompilationFailureException; otherwise the message is left blank (null).
      Parameters:
      cause - the cause
    • CompilationFailureException

      public CompilationFailureException(String msg, Throwable cause)
      Constructs a new CompilationFailureException instance with an initial message and cause.
      Parameters:
      msg - the message
      cause - the cause