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