error.py 160 B

1234567
  1. class PoolEmptyError(Exception):
  2. def __init__(self):
  3. Exception.__init__(self)
  4. def __str__(self):
  5. return repr('代理池已经枯竭')