org.springframework.dao
Class QueryTimeoutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.TransientDataAccessException
org.springframework.dao.QueryTimeoutException
- All Implemented Interfaces:
- java.io.Serializable
public class QueryTimeoutException
- extends TransientDataAccessException
Exception to be thrown on a query timeout. This could have different causes depending on
the database API in use but most likely thrown after the database interrupts or stops
the processing of a query before it has completed.
This exception can be thrown by user code trapping the native database exception or
by exception translation.
- Since:
- 3.1
- Author:
- Thomas Risberg
- See Also:
- Serialized Form
Constructor Summary |
QueryTimeoutException(java.lang.String msg)
Constructor for QueryTimeoutException. |
QueryTimeoutException(java.lang.String msg,
java.lang.Throwable cause)
Constructor for QueryTimeoutException. |
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 |
QueryTimeoutException
public QueryTimeoutException(java.lang.String msg)
- Constructor for QueryTimeoutException.
- Parameters:
msg
- the detail message
QueryTimeoutException
public QueryTimeoutException(java.lang.String msg,
java.lang.Throwable cause)
- Constructor for QueryTimeoutException.
- Parameters:
msg
- the detail messagecause
- the root cause from the data access API in use