Package org.qbicc.machine.tool
Class CompilationFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.qbicc.machine.tool.ToolExecutionFailureException
org.qbicc.machine.tool.CompilationFailureException
- All Implemented Interfaces:
Serializable
An exception thrown when a compilation process executes but exits with a non-zero status.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newCompilationFailureExceptioninstance.Constructs a newCompilationFailureExceptioninstance with an initial message.CompilationFailureException(String msg, Throwable cause) Constructs a newCompilationFailureExceptioninstance with an initial message and cause.Constructs a newCompilationFailureExceptioninstance with an initial cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CompilationFailureException
public CompilationFailureException()Constructs a newCompilationFailureExceptioninstance. The message is left blank (null), and no cause is specified. -
CompilationFailureException
Constructs a newCompilationFailureExceptioninstance with an initial message. No cause is specified.- Parameters:
msg- the message
-
CompilationFailureException
Constructs a newCompilationFailureExceptioninstance with an initial cause. If a non-nullcause is specified, its message is used to initialize the message of thisCompilationFailureException; otherwise the message is left blank (null).- Parameters:
cause- the cause
-
CompilationFailureException
Constructs a newCompilationFailureExceptioninstance with an initial message and cause.- Parameters:
msg- the messagecause- the cause
-