Files
old-tfm/controller/state/exceptions.py

15 lines
327 B
Python
Raw Permalink Normal View History

2016-01-24 09:15:14 +01:00
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)