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

public class ToolExecutionFailureException extends IOException
See Also:
  • Constructor Details

    • ToolExecutionFailureException

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

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

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

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