here_location_services.exceptions module
This module defines API exceptions.
- exception here_location_services.exceptions.ApiError[source]
Bases:
ExceptionException raised for API HTTP response status codes not in [200…300).
The exception value will be the response object returned by
requestswhich provides access to all its attributes, eg.status_code,reasonandtext, etc.
- exception here_location_services.exceptions.ConfigException[source]
Bases:
ExceptionThis
ConfigExceptionis raised whenever there is any error related to platform configuration.
- exception here_location_services.exceptions.AuthenticationException(resp)[source]
Bases:
ExceptionThis
AuthenticationExceptionis raised either authentication or authorization on the platform fails.
- exception here_location_services.exceptions.TooManyRequestsException(resp)[source]
Bases:
ExceptionException raised for API HTTP response status code 429.
The exception value will be the response object returned by
requestswhich provides access to all its attributes, eg.status_code,reasonandtext, etc.