aioappsrv/appservice/errors.py
2021-04-17 10:15:51 +05:30

5 lines
137 B
Python

class RequestError(Exception):
def __init__(self, status: int, *args):
super().__init__(*args)
self.status = status