1
Fork 0
mirror of https://github.com/RGBCube/GitHubWrapper synced 2025-05-17 06:25:10 +00:00
GitHubWrapper/Github/exceptions.py
2022-03-26 16:24:11 +00:00

9 lines
No EOL
173 B
Python

#== exceptions.py ==#
__all__ = (
'APIError',
)
class APIError(Exception):
"""Base level exceptions raised by errors related to any API request or call"""
pass