FileDocCategorySizeDatePackage
JDODuplicateObjectIdException.javaAPI DocGlassfish v2 API3857Fri May 04 22:34:54 BST 2007com.sun.jdo.api.persistence.support

JDODuplicateObjectIdException

public class JDODuplicateObjectIdException extends JDOUserException
JDODuplicateObjectIdException is thrown in case this PersistenceManager has another instance with the same Object Id in its cache.
author
Marina Vatkina
version
0.1

Fields Summary
Constructors Summary
public JDODuplicateObjectIdException()
Creates a new JDODuplicateObjectIdException without detail message.

    
public JDODuplicateObjectIdException(String msg)
Constructs a new JDODuplicateObjectIdException with the specified detail message.

param
msg the detail message.

        super(msg);
    
public JDODuplicateObjectIdException(String msg, Exception nested)
Constructs a new JDODuplicateObjectIdException with the specified detail message and nested Exception.

param
msg the detail message.
param
nested the nested Exception.

        super(msg, nested);
    
public JDODuplicateObjectIdException(String msg, Object[] failed)
Constructs a new JDODuplicateObjectIdException with the specified detail message and failed object array.

param
msg the detail message.
param
failed the failed object array.

        super(msg, failed);
    
public JDODuplicateObjectIdException(String msg, Exception nested, Object[] failed)
Constructs a new JDODuplicateObjectIdException with the specified detail message, nested exception, and failed object array.

param
msg the detail message.
param
nested the nested Exception.
param
failed the failed object array.

        super(msg, nested, failed);
    
Methods Summary