org.springframework.dao
Class EmptyResultDataAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.NonTransientDataAccessException
org.springframework.dao.DataRetrievalFailureException
org.springframework.dao.IncorrectResultSizeDataAccessException
org.springframework.dao.EmptyResultDataAccessException
- All Implemented Interfaces:
- java.io.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
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 |
EmptyResultDataAccessException
public EmptyResultDataAccessException(int expectedSize)
- Constructor for EmptyResultDataAccessException.
- Parameters:
expectedSize
- the expected result size
EmptyResultDataAccessException
public EmptyResultDataAccessException(java.lang.String msg,
int expectedSize)
- Constructor for EmptyResultDataAccessException.
- Parameters:
msg
- the detail messageexpectedSize
- the expected result size
EmptyResultDataAccessException
public EmptyResultDataAccessException(java.lang.String msg,
int expectedSize,
java.lang.Throwable ex)
- Constructor for EmptyResultDataAccessException.
- Parameters:
msg
- the detail messageexpectedSize
- the expected result sizeex
- the wrapped exception