Constructors Summary |
---|
public JDODuplicateObjectIdException()Creates a new JDODuplicateObjectIdException without detail message.
|
public JDODuplicateObjectIdException(String msg)Constructs a new JDODuplicateObjectIdException with the specified detail message.
super(msg);
|
public JDODuplicateObjectIdException(String msg, Exception nested)Constructs a new JDODuplicateObjectIdException with the specified detail message
and nested Exception.
super(msg, nested);
|
public JDODuplicateObjectIdException(String msg, Object[] failed)Constructs a new JDODuplicateObjectIdException with the specified detail message
and 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.
super(msg, nested, failed);
|