Class 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 Detail

      • OptimisticLockingFailedException

        public OptimisticLockingFailedException​(Throwable nested)
        Constructs a new ConcurrentUpdateException with specified nested Throwable.
        Parameters:
        nested - the exception or error that caused this exception to be thrown.
      • OptimisticLockingFailedException

        public OptimisticLockingFailedException​(String msg,
                                                Throwable nested)
        Constructs a new ConcurrentUpdateException with specified detail message and nested Throwable.
        Parameters:
        msg - the error message.
        nested - the exception or error that caused this exception to be thrown.
      • OptimisticLockingFailedException

        public OptimisticLockingFailedException​(String msg)
        Constructs a new ConcurrentUpdateException with specified detail message.
        Parameters:
        msg - the error message.