Files
old-tfm/app/controller/state/exceptions.py
2016-06-08 10:01:55 +02: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)