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 Modifier and Type Field Description private static longserialVersionUID-
Fields inherited from class javax.jdo.JDOException
failed, nested
-
-
Constructor Summary
Constructors Constructor Description JDOUnsupportedOptionException()Constructs a newJDOUnsupportedOptionExceptionwithout a detail message.JDOUnsupportedOptionException(java.lang.String msg)Constructs a newJDOUnsupportedOptionExceptionwith the specified detail message.JDOUnsupportedOptionException(java.lang.String msg, java.lang.Throwable nested)Constructs a newJDOUnsupportedOptionExceptionwith the specified detail message and nestedThrowables.JDOUnsupportedOptionException(java.lang.String msg, java.lang.Throwable[] nested)Constructs a newJDOUnsupportedOptionExceptionwith the specified detail message and nestedThrowables.
-
Method Summary
-
Methods inherited from class javax.jdo.JDOException
getCause, getFailedObject, getNestedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JDOUnsupportedOptionException
public JDOUnsupportedOptionException()
Constructs a newJDOUnsupportedOptionExceptionwithout a detail message.
-
JDOUnsupportedOptionException
public JDOUnsupportedOptionException(java.lang.String msg)
Constructs a newJDOUnsupportedOptionExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
JDOUnsupportedOptionException
public JDOUnsupportedOptionException(java.lang.String msg, java.lang.Throwable[] nested)Constructs a newJDOUnsupportedOptionExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable[].
-
JDOUnsupportedOptionException
public JDOUnsupportedOptionException(java.lang.String msg, java.lang.Throwable nested)Constructs a newJDOUnsupportedOptionExceptionwith the specified detail message and nestedThrowables.- Parameters:
msg- the detail message.nested- the nestedThrowable.
-
-