- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- jakarta.ejb.CreateException
-
- jakarta.ejb.DuplicateKeyException
-
- All Implemented Interfaces:
java.io.Serializable
public class DuplicateKeyException extends CreateException
The DuplicateKeyException exception is thrown if an entity EJB object or enterprise bean local object cannot be created because an object with the same key already exists. This exception is thrown by the create methods defined in an entity bean's home or local home interface.Note: Support for entity beans is optional as of EJB 3.2
- Since:
- EJB 1.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description DuplicateKeyException()
Constructs a DuplicateKeyException with no detail message.DuplicateKeyException(java.lang.String message)
Constructs a DuplicateKeyException with the specified detail message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DuplicateKeyException
public DuplicateKeyException()
Constructs a DuplicateKeyException with no detail message.
-
DuplicateKeyException
public DuplicateKeyException(java.lang.String message)
Constructs a DuplicateKeyException with the specified detail message.- Parameters:
message
- aString
object.
-
-