PyZipline/pyzipline/errors.py
SeaswimmerTheFsh 542bd06f09
Some checks failed
Pylint / Pylint (3.12) (push) Failing after 36s
holy changes
2023-12-19 05:36:18 -05:00

17 lines
338 B
Python

class KwargConflict(Exception):
"""
Raised when the keyword arguments passed to a function conflict.
"""
pass
class HTTPFailure(Exception):
"""
Raised when an HTTP request fails.
"""
pass
class PyZiplineError(Exception):
"""
Raised when an error occurs in the PyZipline library.
"""
pass