当前页面: 
在线文档首页 > 
Hibernate 3.2.3 正式版 API 英文文档
NonUniqueObjectException (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档
org.hibernate
Class NonUniqueObjectException
java.lang.Object
   java.lang.Throwable
java.lang.Throwable
       java.lang.Exception
java.lang.Exception
           java.lang.RuntimeException
java.lang.RuntimeException
               org.hibernate.exception.NestableRuntimeException
org.hibernate.exception.NestableRuntimeException
                   org.hibernate.HibernateException
org.hibernate.HibernateException
                       org.hibernate.NonUniqueObjectException
org.hibernate.NonUniqueObjectException
- All Implemented Interfaces: 
- Nestable, Serializable
- public class NonUniqueObjectException- extends HibernateException
This exception is thrown when an operation would
 break session-scoped identity. This occurs if the
 user tries to associate two different instances of
 the same Java class with a particular identifier,
 in the scope of a single Session.
- Author:
- Gavin King
- See Also:
- Serialized Form
 
 
 
 
| Methods inherited from class org.hibernate.exception.NestableRuntimeException | 
| getCause, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace | 
 
 
 
NonUniqueObjectException
public NonUniqueObjectException(String message,
                                Serializable id,
                                String clazz)
NonUniqueObjectException
public NonUniqueObjectException(Serializable id,
                                String clazz)
getIdentifier
public Serializable getIdentifier()
- 
 
getMessage
public String getMessage()
- Description copied from class: NestableRuntimeException
- Returns the detail message string of this throwable. If it was
 created with a null message, returns the following:
 ( cause==null ? null : cause.toString( ).
 
- 
- Specified by:
- getMessagein interface- Nestable
- Overrides:
- getMessagein class- NestableRuntimeException
 
- 
 
getEntityName
public String getEntityName()
-