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