| java.lang.Object | ||||||||
| ↳ | java.lang.Throwable | |||||||
| ↳ | java.lang.Exception | |||||||
| ↳ | java.lang.RuntimeException | |||||||
| ↳ | org.springframework.core.NestedRuntimeException | |||||||
| ↳ | org.springframework.dao.DataAccessException | |||||||
| ↳ | org.springframework.dao.NonTransientDataAccessException | |||||||
| ↳ | org.springframework.dao.InvalidDataAccessResourceUsageException | |||||||
| ↳ | org.springframework.dao.IncorrectUpdateSemanticsDataAccessException | |||||||
Known Direct Subclasses
|
Data access exception thrown when something unintended appears to have happened with an update, but the transaction hasn't already been rolled back. Thrown, for example, when we wanted to update 1 row in an RDBMS but actually updated 3.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructor for IncorrectUpdateSemanticsDataAccessException.
| |||||||||||
Constructor for IncorrectUpdateSemanticsDataAccessException.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Return whether data was updated.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.springframework.core.NestedRuntimeException
| |||||||||||
From class
java.lang.Throwable
| |||||||||||
From class
java.lang.Object
| |||||||||||
Constructor for IncorrectUpdateSemanticsDataAccessException.
| msg | the detail message |
|---|
Constructor for IncorrectUpdateSemanticsDataAccessException.
| msg | the detail message |
|---|---|
| cause | the root cause from the underlying API, such as JDBC |
Return whether data was updated. If this method returns false, there's nothing to roll back.
The default implementation always returns true. This can be overridden in subclasses.