15 lines
327 B
Python
15 lines
327 B
Python
|
|
|
||
|
|
class ClassNotReadyException(Exception):
|
||
|
|
def __init__(self, value):
|
||
|
|
self.value = value
|
||
|
|
|
||
|
|
def __str__(self):
|
||
|
|
return repr(self.value)
|
||
|
|
|
||
|
|
class ErrorCommunicatingWithServerException(Exception):
|
||
|
|
def __init__(self, value):
|
||
|
|
self.value = value
|
||
|
|
|
||
|
|
def __str__(self):
|
||
|
|
return repr(self.value)
|