edu.isi.pegasus.planner.code
public class CodeGeneratorException extends Exception
| Constructor and Description |
|---|
CodeGeneratorException()
Constructs a
CodeGeneratorException with no detail
message. |
CodeGeneratorException(String message)
Constructs a
CodeGeneratorException with the specified detailed
message. |
CodeGeneratorException(String message,
Throwable cause)
Constructs a
CodeGeneratorException with the specified detailed
message and a cause. |
CodeGeneratorException(Throwable cause)
Constructs a
CodeGeneratorException with the
specified just a cause. |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic CodeGeneratorException()
CodeGeneratorException with no detail
message.public CodeGeneratorException(String message)
CodeGeneratorException with the specified detailed
message.message - is the detailled message.public CodeGeneratorException(String message, Throwable cause)
CodeGeneratorException with the specified detailed
message and a cause.message - is the detailled message.cause - is the cause (which is saved for later retrieval by the
Throwable.getCause() method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.public CodeGeneratorException(Throwable cause)
CodeGeneratorException with the
specified just a cause.cause - is the cause (which is saved for later retrieval by the
Throwable.getCause() method). A null
value is permitted, and indicates that the cause is nonexistent or
unknown.