adding untracked files
This commit is contained in:
14
controller/state/exceptions.py
Normal file
14
controller/state/exceptions.py
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
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)
|
||||
Reference in New Issue
Block a user