6 lines
137 B
Python
6 lines
137 B
Python
|
class RequestError(Exception):
|
||
|
def __init__(self, status: int, *args):
|
||
|
super().__init__(*args)
|
||
|
|
||
|
self.status = status
|