当前页面: 
在线文档首页 > 
Hibernate 3.2.4 正式版 API 英文文档
StaleObjectStateException (Hibernate API Documentation) - Hibernate 3.2.4 正式版 API 英文文档
org.hibernate
Class StaleObjectStateException
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.StaleStateException
org.hibernate.StaleStateException
                           org.hibernate.StaleObjectStateException
org.hibernate.StaleObjectStateException
- All Implemented Interfaces: 
- Nestable, Serializable
- public class StaleObjectStateException- extends StaleStateException
A StaleStateException that carries information 
 about a particular entity instance that was the source
 of the failure.
- 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 | 
 
 
 
StaleObjectStateException
public StaleObjectStateException(String persistentClass,
                                 Serializable identifier)
getEntityName
public String getEntityName()
- 
 
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
 
-