Source code for generic_connection_pool.exceptions
class BaseError(Exception):
"""
Base package exception.
"""
class ConnectionPoolIsFull(BaseError):
"""
Indicates that a pool is full of connections.
"""
class ConnectionPoolNotFound(BaseError):
"""
Connection pool not found.
"""