blob: 248b159aa99d2a7b7fc4fd42496fe4889f50a832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.data.util.sqlcontainer;
/**
* An OptimisticLockException is thrown when trying to update or delete a row
* that has been changed since last read from the database.
*
* OptimisticLockException is a runtime exception because optimistic locking is
* turned off by default, and as such will never be thrown in a default
* configuration. In order to turn on optimistic locking, you need to specify
* the version column in your TableQuery instance.
*
* @see com.vaadin.addon.sqlcontainer.query.TableQuery#setVersionColumn(String)
*
* @author Jonatan Kronqvist / Vaadin Ltd
*/
public class OptimisticLockException extends RuntimeException {
private final RowId rowId;
public OptimisticLockException(RowId rowId) {
super();
this.rowId = rowId;
}
public OptimisticLockException(String msg, RowId rowId) {
super(msg);
this.rowId = rowId;
}
public RowId getRowId() {
return rowId;
}
}
|