javax.jdo
Class JDOFatalException
java.lang.RuntimeException
public class JDOFatalException
This class represents exceptions that are fatal; that is, the condition
that caused it cannot be bypassed even if the operation is retried.
JDOFatalException()- Constructs a new
JDOFatalException without a detail message.
|
JDOFatalException(String msg)- Constructs a new
JDOFatalException with the specified detail message.
|
JDOFatalException(String msg, Object failed)- Constructs a new
JDOFatalException with the specified detail message
and failed object.
|
JDOFatalException(String msg, Throwable nested)- Constructs a new
JDOFatalException with the specified detail
message and nested Throwables.
|
JDOFatalException(String msg, Throwable nested, Object failed)- Constructs a new
JDOFatalException with the specified detail message,
nested Throwables, and failed object.
|
JDOFatalException(String msg, Throwable[] nested)- Constructs a new
JDOFatalException with the specified detail
message and nested Throwables.
|
JDOFatalException(String msg, Throwable[] nested, Object failed)- Constructs a new
JDOFatalException with the specified detail message,
nested Throwables, and failed object.
|
JDOFatalException
public JDOFatalException()
Constructs a new JDOFatalException without a detail message.
JDOFatalException
public JDOFatalException(String msg)
Constructs a new JDOFatalException with the specified detail message.
msg - the detail message.
JDOFatalException
public JDOFatalException(String msg,
Object failed)Constructs a new JDOFatalException with the specified detail message
and failed object.
msg - the detail message.failed - the failed object.
JDOFatalException
public JDOFatalException(String msg,
Throwable nested) Constructs a new JDOFatalException with the specified detail
message and nested Throwables.
msg - the detail message.nested - the nested Throwable.
JDOFatalException
public JDOFatalException(String msg,
Throwable nested,
Object failed)Constructs a new JDOFatalException with the specified detail message,
nested Throwables, and failed object.
msg - the detail message.nested - the nested Throwable.failed - the failed object.
JDOFatalException
public JDOFatalException(String msg,
Throwable[] nested) Constructs a new JDOFatalException with the specified detail
message and nested Throwables.
msg - the detail message.nested - the nested Throwable[].
JDOFatalException
public JDOFatalException(String msg,
Throwable[] nested,
Object failed)Constructs a new JDOFatalException with the specified detail message,
nested Throwables, and failed object.
msg - the detail message.nested - the nested Throwable[].failed - the failed object.