PyZipline/pyzipline/errors.py

18 lines
338 B
Python
Raw Normal View History

2023-12-19 02:16:31 -05:00
class KwargConflict(Exception):
"""
Raised when the keyword arguments passed to a function conflict.
"""
pass
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