freezer/freezer/exceptions/utils.py

8 lines
242 B
Python

class TimeoutException(Exception):
msg = "Timeout has been occurred."
def __init__(self, message=None, **kwargs):
if not message:
message = self.msg
super(TimeoutException, self).__init__(message, kwargs)