public class CondorStyleException extends CodeGeneratorException
Constructor and Description |
---|
CondorStyleException()
Constructs a
CondorStyleException with no detail
message. |
CondorStyleException(java.lang.String message)
Constructs a
CondorStyleException with the specified detailed
message. |
CondorStyleException(java.lang.String message,
java.lang.Throwable cause)
Constructs a
CondorStyleException with the specified detailed
message and a cause. |
CondorStyleException(java.lang.Throwable cause)
Constructs a
CondorStyleException with the
specified just a cause. |
public CondorStyleException()
CondorStyleException
with no detail
message.public CondorStyleException(java.lang.String message)
CondorStyleException
with the specified detailed
message.message
- is the detailled message.public CondorStyleException(java.lang.String message, java.lang.Throwable cause)
CondorStyleException
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 CondorStyleException(java.lang.Throwable cause)
CondorStyleException
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.