4 lines
117 B
Python
4 lines
117 B
Python
class TimeoutException(Exception):
|
|
def __str__(self):
|
|
return repr('Timeout requesting to mapzen server')
|