mirror of
https://github.com/Mesteriis/hassio-addons-avm.git
synced 2026-01-09 06:51:03 +01:00
7 lines
147 B
Python
7 lines
147 B
Python
from aiohttp.web import HTTPClientError
|
|
|
|
|
|
class HttpMultiException(HTTPClientError):
|
|
def __init__(self, code):
|
|
self.status_code = code
|