mirror of
https://github.com/clearml/clearml-agent
synced 2025-01-31 17:16:51 +00:00
18 lines
345 B
Python
18 lines
345 B
Python
class SessionError(Exception):
|
|
pass
|
|
|
|
|
|
class AsyncError(SessionError):
|
|
def __init__(self, msg, *args, **kwargs):
|
|
super(AsyncError, self).__init__(msg, *args)
|
|
for k, v in kwargs.items():
|
|
setattr(self, k, v)
|
|
|
|
|
|
class TimeoutExpiredError(SessionError):
|
|
pass
|
|
|
|
|
|
class ResultNotReadyError(SessionError):
|
|
pass
|