类 PessimisticEntityLockException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.persistence.PersistenceException
-
- org.hibernate.HibernateException
-
- org.hibernate.dialect.lock.LockingStrategyException
-
- org.hibernate.dialect.lock.PessimisticEntityLockException
-
- 所有已实现的接口:
Serializable
public class PessimisticEntityLockException extends LockingStrategyException
Represents an error trying to apply a pessimisticLockingStrategyto an entity- 作者:
- Steve Ebersole
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 PessimisticEntityLockException(Object entity, String message, JDBCException cause)Constructs a PessimisticEntityLockException
-
方法概要
-
从类继承的方法 org.hibernate.dialect.lock.LockingStrategyException
getEntity
-
-
-
-
构造器详细资料
-
PessimisticEntityLockException
public PessimisticEntityLockException(Object entity, String message, JDBCException cause)
Constructs a PessimisticEntityLockException- 参数:
entity- The entity we were trying to lockmessage- Message explaining the conditioncause- The underlying cause
-
-