Files
old-tfm/controller/state/exceptions.py
2016-01-24 09:15:14 +01:00

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)