You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)
|