Files
Hotel-Booking/Backend/venv/lib/python3.12/site-packages/paypalhttp/http_error.py
Iliyan Angelov 34b4c969d4 updates
2025-11-19 12:27:01 +02:00

11 lines
266 B
Python

class HttpError(IOError):
def __init__(self, message, status_code, headers):
IOError.__init__(self)
self.message = message
self.status_code = status_code
self.headers = headers
def __str__(self):
return self.message