6 lines
136 B
Python
6 lines
136 B
Python
class ClientException(Exception):
|
|
"""If a client could not fetch information"""
|
|
|
|
def __str__(self):
|
|
return self.args[0]
|