forked from Olav63/outils_OSM
20 lines
385 B
Python
20 lines
385 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
|
||
|
class Api_error(Exception):
|
||
|
def __init__(self, http_code, message="erreur appel API"):
|
||
|
self.http_code = http_code
|
||
|
self.message = message
|
||
|
super().__init__(self.message)
|
||
|
|
||
|
def __str__(self):
|
||
|
return f"{self.http_code} -> {self.message}"
|
||
|
|
||
|
|
||
|
class Overpass_error(Api_error):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class Geo_api_error(Api_error):
|
||
|
pass
|