org.springframework.dao
Class IncorrectUpdateSemanticsDataAccessException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.springframework.core.NestedRuntimeException
                  extended byorg.springframework.dao.DataAccessException
                      extended byorg.springframework.dao.InvalidDataAccessResourceUsageException
                          extended byorg.springframework.dao.IncorrectUpdateSemanticsDataAccessException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
JdbcUpdateAffectedIncorrectNumberOfRowsException

public class IncorrectUpdateSemanticsDataAccessException
extends InvalidDataAccessResourceUsageException

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.

Author:
Rod Johnson
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Constructor Summary
IncorrectUpdateSemanticsDataAccessException(String msg)
          Constructor for IncorrectUpdateSemanticsDataAccessException.
IncorrectUpdateSemanticsDataAccessException(String msg, Throwable ex)
          Constructor for IncorrectUpdateSemanticsDataAccessException.
 
Method Summary
 boolean getDataWasUpdated()
          Deprecated. in favor of wasDataUpdated
 boolean wasDataUpdated()
          Return whether data was updated.
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IncorrectUpdateSemanticsDataAccessException

public IncorrectUpdateSemanticsDataAccessException(String msg)
Constructor for IncorrectUpdateSemanticsDataAccessException.

Parameters:
msg - message

IncorrectUpdateSemanticsDataAccessException

public IncorrectUpdateSemanticsDataAccessException(String msg,
                                                   Throwable ex)
Constructor for IncorrectUpdateSemanticsDataAccessException.

Parameters:
msg - message
ex - root cause from the underlying API, such as JDBC
Method Detail

wasDataUpdated

public boolean wasDataUpdated()
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.


getDataWasUpdated

public boolean getDataWasUpdated()
Deprecated. in favor of wasDataUpdated

See Also:
wasDataUpdated()


Copyright (C) 2003-2004 The Spring Framework Project.