|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.jdo.model.ModelFatalException
This exception indicates a fatal Model problem. Note this is an unchecked exception.
Constructor Summary | |
ModelFatalException()
Creates new ModelFatalException without detail
message. |
|
ModelFatalException(java.lang.String message)
Constructs a ModelFatalException with the specified
detail message. |
|
ModelFatalException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new ModelFatalException with the specified
detail message and cause Exception. |
Method Summary | |
java.lang.Throwable |
getCause()
Returns the cause of this throwable or null if the cause is nonexistent or unknown. |
java.lang.String |
getMessage()
Returns the error message string of this throwable object. |
java.lang.Throwable |
initCause(java.lang.Throwable cause)
Initializes the cause of this throwable to the specified value. |
void |
printStackTrace()
Prints this ModelFatalException and its backtrace to the
standard error output. |
void |
printStackTrace(java.io.PrintStream s)
Prints this ModelFatalException and its backtrace to the
specified print stream. |
void |
printStackTrace(java.io.PrintWriter s)
Prints this ModelFatalException and its backtrace to the specified
print writer. |
java.lang.String |
toString()
The String representation includes the name of the class,
the descriptive comment (if any),
and the String representation of the cause (if any). |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getStackTrace, setStackTrace |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
public ModelFatalException()
ModelFatalException
without detail
message.
public ModelFatalException(java.lang.String message)
ModelFatalException
with the specified
detail message.
message
- the detail message.public ModelFatalException(java.lang.String message, java.lang.Throwable cause)
ModelFatalException
with the specified
detail message and cause Exception.
message
- the detail message.cause
- the cause (which is saved for later retrieval by the
getCause()
method). (A null value is permitted, and
indicates that the cause is nonexistent or unknown.)Method Detail |
public java.lang.Throwable getCause()
public java.lang.Throwable initCause(java.lang.Throwable cause)
cause
- the cause (which is saved for later retrieval by the
getCause()
method). (A null value is permitted, and
indicates that the cause is nonexistent or unknown.)
ModelFatalException
instance.public java.lang.String getMessage()
ModelException
object if it was created with an error message string, the error
message of the cause if it was not created a message but the cause
has a message, or null
if neither has an error message.public java.lang.String toString()
String
representation includes the name of the class,
the descriptive comment (if any),
and the String
representation of the cause (if any).
String
.public void printStackTrace()
ModelFatalException
and its backtrace to the
standard error output.
Print cause Throwable's stack trace as well.
public void printStackTrace(java.io.PrintStream s)
ModelFatalException
and its backtrace to the
specified print stream.
Print cause Throwable's stack trace as well.
s
- PrintStream
to use for outputpublic void printStackTrace(java.io.PrintWriter s)
ModelFatalException
and its backtrace to the specified
print writer.
Print cause Throwable' stack trace as well.
s
- PrintWriter
to use for output
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |