Constructors Summary |
---|
public OptimisticLockException()Constructs a new OptimisticLockException exception
with null as its detail message.
super();
|
public OptimisticLockException(String message)Constructs a new OptimisticLockException exception
with the specified detail message.
super(message);
|
public OptimisticLockException(String message, Throwable cause)Constructs a new OptimisticLockException exception
with the specified detail message and cause.
super(message, cause);
|
public OptimisticLockException(Throwable cause)Constructs a new OptimisticLockException exception
with the specified cause.
super(cause);
|
public OptimisticLockException(Object entity)Constructs a new OptimisticLockException exception
with the specified entity.
this.entity = entity;
|
public OptimisticLockException(String message, Throwable cause, Object entity)Constructs a new OptimisticLockException exception
with the specified detail message, cause, and entity.
super(message, cause);
this.entity = entity;
|