org.hibernate
Class NonUniqueObjectException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.hibernate.HibernateException
                  extended by org.hibernate.NonUniqueObjectException
All Implemented Interfaces:
java.io.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

Constructor Summary
NonUniqueObjectException(java.io.Serializable id, java.lang.String clazz)
           
NonUniqueObjectException(java.lang.String message, java.io.Serializable id, java.lang.String clazz)
           
 
Method Summary
 java.lang.String getEntityName()
           
 java.io.Serializable getIdentifier()
           
 java.lang.String getMessage()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NonUniqueObjectException

public NonUniqueObjectException(java.lang.String message,
                                java.io.Serializable id,
                                java.lang.String clazz)

NonUniqueObjectException

public NonUniqueObjectException(java.io.Serializable id,
                                java.lang.String clazz)
Method Detail

getIdentifier

public java.io.Serializable getIdentifier()

getMessage

public java.lang.String getMessage()
Overrides:
getMessage in class java.lang.Throwable

getEntityName

public java.lang.String getEntityName()


Copyright © 2009 Hibernate.org. All Rights Reserved.