2023-12-19 05:36:18 -05:00
|
|
|
class HTTPFailure(Exception):
|
|
|
|
"""
|
|
|
|
Raised when an HTTP request fails.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
class PyZiplineError(Exception):
|
|
|
|
"""
|
|
|
|
Raised when an error occurs in the PyZipline library.
|
|
|
|
"""
|
|
|
|
pass
|
2023-12-20 17:53:00 -05:00
|
|
|
|
|
|
|
class FeatureDisabledError(Exception):
|
|
|
|
"""
|
|
|
|
Raised when a feature is disabled on the Zipline instance.
|
|
|
|
"""
|
|
|
|
pass
|