Package org.qbicc.machine.tool
Class ToolExecutionFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.qbicc.machine.tool.ToolExecutionFailureException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CompilationFailureException
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newToolExecutionFailureExceptioninstance.Constructs a newToolExecutionFailureExceptioninstance with an initial message.ToolExecutionFailureException(String msg, Throwable cause) Constructs a newToolExecutionFailureExceptioninstance with an initial message and cause.Constructs a newToolExecutionFailureExceptioninstance 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
-
ToolExecutionFailureException
public ToolExecutionFailureException()Constructs a newToolExecutionFailureExceptioninstance. The message is left blank (null), and no cause is specified. -
ToolExecutionFailureException
Constructs a newToolExecutionFailureExceptioninstance with an initial message. No cause is specified.- Parameters:
msg- the message
-
ToolExecutionFailureException
Constructs a newToolExecutionFailureExceptioninstance with an initial cause. If a non-nullcause is specified, its message is used to initialize the message of thisToolExecutionFailureException; otherwise the message is left blank (null).- Parameters:
cause- the cause
-
ToolExecutionFailureException
Constructs a newToolExecutionFailureExceptioninstance with an initial message and cause.- Parameters:
msg- the messagecause- the cause
-