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:
java.io.Serializable
public class JDOUnsupportedOptionException extends JDOUserException
This class represents exceptions caused by the use of optional features not supported by the JDO implementation.- Version:
- 1.0
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.jdo.JDOException
failed, nested
-
-
Constructor Summary
Constructors Constructor Description JDOUnsupportedOptionException()
Constructs a newJDOUnsupportedOptionException
without a detail message.JDOUnsupportedOptionException(java.lang.String msg)
Constructs a newJDOUnsupportedOptionException
with the specified detail message.JDOUnsupportedOptionException(java.lang.String msg, java.lang.Throwable nested)
Constructs a newJDOUnsupportedOptionException
with the specified detail message and nestedThrowable
s.JDOUnsupportedOptionException(java.lang.String msg, java.lang.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
-
-
-
-
Constructor Detail
-
JDOUnsupportedOptionException
public JDOUnsupportedOptionException()
Constructs a newJDOUnsupportedOptionException
without a detail message.
-
JDOUnsupportedOptionException
public JDOUnsupportedOptionException(java.lang.String msg)
Constructs a newJDOUnsupportedOptionException
with the specified detail message.- Parameters:
msg
- the detail message.
-
JDOUnsupportedOptionException
public JDOUnsupportedOptionException(java.lang.String msg, java.lang.Throwable[] nested)
Constructs a newJDOUnsupportedOptionException
with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable[]
.
-
JDOUnsupportedOptionException
public JDOUnsupportedOptionException(java.lang.String msg, java.lang.Throwable nested)
Constructs a newJDOUnsupportedOptionException
with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable
.
-
-