- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.jooq.exception.DataAccessException
-
- org.jooq.exception.DataChangedException
-
- All Implemented Interfaces:
Serializable
public class DataChangedException extends DataAccessException
An error occurred while storing a record whose underlying data had already been changed- Author:
- Lukas Eder
- See Also:
UpdatableRecord.store()
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataChangedException(String message)
Constructor for DataChangedException.DataChangedException(String message, Throwable cause)
Constructor for DataChangedException.
-
Method Summary
-
Methods inherited from class org.jooq.exception.DataAccessException
getCause, getStackTrace, sqlState, sqlStateClass, sqlStateSubclass
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DataChangedException
public DataChangedException(String message)
Constructor for DataChangedException.- Parameters:
message
- the detail message
-
-