mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-05-17 06:25:10 +00:00
9 lines
No EOL
173 B
Python
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 |