org.springframework.dao
Class EmptyResultDataAccessException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.dao.DataAccessException
                      extended by org.springframework.dao.NonTransientDataAccessException
                          extended by org.springframework.dao.DataRetrievalFailureException
                              extended by org.springframework.dao.IncorrectResultSizeDataAccessException
                                  extended by org.springframework.dao.EmptyResultDataAccessException
All Implemented Interfaces:
Serializable

public class EmptyResultDataAccessException
extends IncorrectResultSizeDataAccessException

Data access exception thrown when a result was expected to have at least one row (or element) but zero rows (or elements) were actually returned.

Since:
2.0
Author:
Juergen Hoeller
See Also:
IncorrectResultSizeDataAccessException, Serialized Form

Constructor Summary
EmptyResultDataAccessException(int expectedSize)
          Constructor for EmptyResultDataAccessException.
EmptyResultDataAccessException(String msg, int expectedSize)
          Constructor for EmptyResultDataAccessException.
 
Method Summary
 
Methods inherited from class org.springframework.dao.IncorrectResultSizeDataAccessException
getActualSize, getExpectedSize
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMessage, getMostSpecificCause, getRootCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EmptyResultDataAccessException

public EmptyResultDataAccessException(int expectedSize)
Constructor for EmptyResultDataAccessException.

Parameters:
expectedSize - the expected result size

EmptyResultDataAccessException

public EmptyResultDataAccessException(String msg,
                                      int expectedSize)
Constructor for EmptyResultDataAccessException.

Parameters:
msg - the detail message
expectedSize - the expected result size