errors.py 203 B

123456789
  1. """All specific exceptions for the library."""
  2. class FakeUserAgentError(Exception):
  3. """Exception for any problems that are library specific."""
  4. # common alias
  5. UserAgentError = FakeUserAgentError