Raised when a pool runs out of connections and no more are allowed.
| 178 | |
| 179 | |
| 180 | class EmptyPoolError(PoolError): |
| 181 | """Raised when a pool runs out of connections and no more are allowed.""" |
| 182 | |
| 183 | |
| 184 | class FullPoolError(PoolError): |
no outgoing calls