-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfastpixerror.py
More file actions
34 lines (28 loc) · 1014 Bytes
/
fastpixerror.py
File metadata and controls
34 lines (28 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""
This file is auto-generated.
Do not edit this file manually.
Your changes will be overwritten during the next generation.
"""
import httpx
from typing import Optional
from dataclasses import dataclass, field
@dataclass(unsafe_hash=True)
class FastpixError(Exception):
"""The base class for all HTTP error responses."""
message: str
status_code: int
body: str
headers: httpx.Headers = field(hash=False)
raw_response: httpx.Response = field(hash=False)
def __init__(
self, message: str, raw_response: httpx.Response, body: Optional[str] = None
):
object.__setattr__(self, "message", message)
object.__setattr__(self, "status_code", raw_response.status_code)
object.__setattr__(
self, "body", body if body is not None else raw_response.text
)
object.__setattr__(self, "headers", raw_response.headers)
object.__setattr__(self, "raw_response", raw_response)
def __str__(self):
return self.message