Package javax.jdo
Class JDOUnsupportedOptionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.jdo.JDOException
javax.jdo.JDOCanRetryException
javax.jdo.JDOUserException
javax.jdo.JDOUnsupportedOptionException
- All Implemented Interfaces:
Serializable
This class represents exceptions caused by the use of optional features
not supported by the JDO implementation.
- Version:
- 1.0
- See Also:
-
Field Summary
Fields inherited from class javax.jdo.JDOException
failed, nested
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newJDOUnsupportedOptionException
without a detail message.Constructs a newJDOUnsupportedOptionException
with the specified detail message.JDOUnsupportedOptionException
(String msg, Throwable nested) Constructs a newJDOUnsupportedOptionException
with the specified detail message and nestedThrowable
s.JDOUnsupportedOptionException
(String msg, Throwable[] nested) Constructs a newJDOUnsupportedOptionException
with the specified detail message and nestedThrowable
s. -
Method Summary
Methods inherited from class javax.jdo.JDOException
getCause, getFailedObject, getNestedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, setStackTrace
-
Constructor Details
-
JDOUnsupportedOptionException
public JDOUnsupportedOptionException()Constructs a newJDOUnsupportedOptionException
without a detail message. -
JDOUnsupportedOptionException
Constructs a newJDOUnsupportedOptionException
with the specified detail message.- Parameters:
msg
- the detail message.
-
JDOUnsupportedOptionException
Constructs a newJDOUnsupportedOptionException
with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable[]
.
-
JDOUnsupportedOptionException
Constructs a newJDOUnsupportedOptionException
with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable
.
-