Class UnsupportedDataTypeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.datanucleus.exceptions.NucleusException
org.datanucleus.exceptions.NucleusDataStoreException
org.datanucleus.store.rdbms.exceptions.UnsupportedDataTypeException
- All Implemented Interfaces:
Serializable
public class UnsupportedDataTypeException
extends org.datanucleus.exceptions.NucleusDataStoreException
A UnsupportedDataTypeException is thrown if an attempt is made
to persist an object field whose data type is not supported by the database
and/or the persistence package.
- Version:
- $Revision: 1.4 $
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an unsupported data type exception with no specific detail message.Constructs an unsupported data type exception with the specified detail message.UnsupportedDataTypeException
(String msg, Exception nested) Constructs an unsupported data type exception with the specified detail message and nested exception. -
Method Summary
Methods inherited from class org.datanucleus.exceptions.NucleusException
getCause, getFailedObject, getNestedExceptions, isFatal, printStackTrace, printStackTrace, printStackTrace, setFatal, setNestedException
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
UnsupportedDataTypeException
public UnsupportedDataTypeException()Constructs an unsupported data type exception with no specific detail message. -
UnsupportedDataTypeException
Constructs an unsupported data type exception with the specified detail message.- Parameters:
msg
- the detail message
-
UnsupportedDataTypeException
Constructs an unsupported data type exception with the specified detail message and nested exception.- Parameters:
msg
- the detail messagenested
- the nested exception(s).
-