Package org.apache.torque
Class OptimisticLockingFailedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.sql.SQLException
-
- org.apache.torque.TorqueException
-
- org.apache.torque.OptimisticLockingFailedException
-
- All Implemented Interfaces:
Serializable
,Iterable<Throwable>
public class OptimisticLockingFailedException extends TorqueException
This exception is thrown if the database detects that a row in a table with optimistic locking was updated by another process.- Version:
- $Id: OptimisticLockingFailedException.java 1448414 2013-02-20 21:06:35Z tfischer $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OptimisticLockingFailedException(String msg)
Constructs a newConcurrentUpdateException
with specified detail message.OptimisticLockingFailedException(String msg, Throwable nested)
Constructs a newConcurrentUpdateException
with specified detail message and nestedThrowable
.OptimisticLockingFailedException(Throwable nested)
Constructs a newConcurrentUpdateException
with specified nestedThrowable
.
-
Method Summary
-
Methods inherited from class java.sql.SQLException
getErrorCode, getNextException, getSQLState, iterator, setNextException
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
OptimisticLockingFailedException
public OptimisticLockingFailedException(Throwable nested)
Constructs a newConcurrentUpdateException
with specified nestedThrowable
.- Parameters:
nested
- the exception or error that caused this exception to be thrown.
-
OptimisticLockingFailedException
public OptimisticLockingFailedException(String msg, Throwable nested)
Constructs a newConcurrentUpdateException
with specified detail message and nestedThrowable
.- Parameters:
msg
- the error message.nested
- the exception or error that caused this exception to be thrown.
-
OptimisticLockingFailedException
public OptimisticLockingFailedException(String msg)
Constructs a newConcurrentUpdateException
with specified detail message.- Parameters:
msg
- the error message.
-
-