1
0
Fork 0
onnx-web/api/onnx_web/errors.py

23 lines
342 B
Python
Raw Normal View History

2023-07-15 22:05:27 +00:00
class RetryException(Exception):
"""
Used when a chain pipeline has run out of retries.
"""
pass
class CancelledException(Exception):
"""
Used when a job has been cancelled and needs to stop.
"""
pass
class RequestException(Exception):
"""
Used when an HTTP request has failed.
"""
pass