Source code for pyinaturalist.exceptions

from requests import HTTPError


[docs]class AuthenticationError(HTTPError): pass
[docs]class ObservationNotFound(HTTPError): pass
[docs]class TaxonNotFound(HTTPError): pass
[docs]class TooManyRequests(HTTPError): """Error raised for either a 429 response, or pre-emptively before we reach the rate limit"""