PhotosAPI_Client/photosapi_client/errors.py

15 lines
470 B
Python
Raw Normal View History

2023-03-22 20:37:55 +02:00
""" Contains shared errors types that can be raised from API functions """
class UnexpectedStatus(Exception):
"""Raised by api functions when the response status an undocumented status and Client.raise_on_unexpected_status is True"""
2023-06-22 15:38:42 +03:00
def __init__(self, status_code: int, content: bytes):
self.status_code = status_code
self.content = content
super().__init__(f"Unexpected status code: {status_code}")
2023-03-22 20:37:55 +02:00
__all__ = ["UnexpectedStatus"]