javax.jdo

Class JDONullIdentityException


public class JDONullIdentityException
extends JDOUserException

An instance of this class is thrown when attempting to create an object id when the object id constructor parameter is null. This might occur when creating an object id instance from a transient instance where an identity field is null.
Version:
2.0
Since:
2.0

Constructor Summary

JDONullIdentityException()
Constructs a new JDONullIdentityException without a detail message.
JDONullIdentityException(String msg)
Constructs a new JDONullIdentityException with the specified detail message.
JDONullIdentityException(String msg, Object failed)
Constructs a new JDONullIdentityException with the specified detail message and failed object.
JDONullIdentityException(String msg, Throwable nested)
Constructs a new JDONullIdentityException with the specified detail message and nested Throwables.
JDONullIdentityException(String msg, Throwable[] nested)
Constructs a new JDONullIdentityException with the specified detail message and nested Throwables.

Method Summary

Methods inherited from class javax.jdo.JDOException

getCause, getFailedObject, getNestedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, toString

Constructor Details

JDONullIdentityException

public JDONullIdentityException()
Constructs a new JDONullIdentityException without a detail message.

JDONullIdentityException

public JDONullIdentityException(String msg)
Constructs a new JDONullIdentityException with the specified detail message.
Parameters:
msg - the detail message.

JDONullIdentityException

public JDONullIdentityException(String msg,
                                Object failed)
Constructs a new JDONullIdentityException with the specified detail message and failed object.
Parameters:
msg - the detail message.
failed - the failed object.

JDONullIdentityException

public JDONullIdentityException(String msg,
                                Throwable nested)
Constructs a new JDONullIdentityException with the specified detail message and nested Throwables.
Parameters:
msg - the detail message.
nested - the nested Throwable.

JDONullIdentityException

public JDONullIdentityException(String msg,
                                Throwable[] nested)
Constructs a new JDONullIdentityException with the specified detail message and nested Throwables.
Parameters:
msg - the detail message.
nested - the nested Throwable[].