Package org.datanucleus.exceptions
Class NucleusUnsupportedOptionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.datanucleus.exceptions.NucleusException
-
- org.datanucleus.exceptions.NucleusUserException
-
- org.datanucleus.exceptions.NucleusUnsupportedOptionException
-
- All Implemented Interfaces:
java.io.Serializable
public class NucleusUnsupportedOptionException extends NucleusUserException
Exception thrown when a particular option has been selected but isnt supported.- Version:
- $Revision: 1.1 $
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Fields inherited from class org.datanucleus.exceptions.NucleusException
failed, fatal, nested
-
-
Constructor Summary
Constructors Constructor Description NucleusUnsupportedOptionException()
Constructs a new exception without a detail message.NucleusUnsupportedOptionException(java.lang.String msg)
Constructs a new exception with the specified detail message.NucleusUnsupportedOptionException(java.lang.String msg, java.lang.Throwable[] nested)
Constructs a new exception with the specified detail message and nestedThrowable
s.
-
Method Summary
-
Methods inherited from class org.datanucleus.exceptions.NucleusException
getCause, getFailedObject, getNestedExceptions, isFatal, printStackTrace, printStackTrace, printStackTrace, setFatal, setNestedException
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NucleusUnsupportedOptionException
public NucleusUnsupportedOptionException()
Constructs a new exception without a detail message.
-
NucleusUnsupportedOptionException
public NucleusUnsupportedOptionException(java.lang.String msg)
Constructs a new exception with the specified detail message.- Parameters:
msg
- the detail message.
-
NucleusUnsupportedOptionException
public NucleusUnsupportedOptionException(java.lang.String msg, java.lang.Throwable[] nested)
Constructs a new exception with the specified detail message and nestedThrowable
s.- Parameters:
msg
- the detail message.nested
- the nestedThrowable[]
.
-
-