Class PoolException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.data.redis.connection.PoolException
- All Implemented Interfaces:
Serializable
public class PoolException
extends org.springframework.core.NestedRuntimeException
Exception thrown when there are issues with a resource pool
- Author:
- Jennifer Hickey, Christoph Strobl, Mark Paluch
- See Also:
-
Constructor Summary
ConstructorDescriptionPoolException
(String msg) Constructs a newPoolException
instance.PoolException
(String msg, Throwable cause) Constructs a newPoolException
instance. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PoolException
Constructs a newPoolException
instance.- Parameters:
msg
- the detail message.
-
PoolException
Constructs a newPoolException
instance.- Parameters:
msg
- the detail message.cause
- the nested exception.
-