dataservices-api/lib/python/heremaps/heremapsexceptions.py
2015-11-03 19:21:28 +01:00

16 lines
435 B
Python

import json
class BadGeocodingParams(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr('Bad geocoding params: ' + json.dumps(value))
class NoGeocodingParams(Exception):
def __str__(self):
return repr('No params for geocoding specified')
class EmptyGeocoderResponse(Exception):
def __str__(self):
return repr('The request could not be geocoded')