Class NullValueException
- 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.NullValueException
-
- All Implemented Interfaces:
java.io.Serializable
public class NullValueException extends org.datanucleus.exceptions.NucleusDataStoreException
A NullValueException is thrown if a null value is encountered in a database column that should prohibit null values.- Version:
- $Revision: 1.3 $
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description NullValueException()
Constructs a null value exception with no specific detail message.NullValueException(java.lang.String msg)
Constructs a null value exception with the specified detail message.
-
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
-
NullValueException
public NullValueException()
Constructs a null value exception with no specific detail message.
-
NullValueException
public NullValueException(java.lang.String msg)
Constructs a null value exception with the specified detail message.- Parameters:
msg
- the detail message
-
-