mirror of
https://github.com/DragonMinded/bemaniutils.git
synced 2026-03-21 17:24:33 -05:00
6 lines
141 B
Python
6 lines
141 B
Python
class APIException(Exception):
|
|
|
|
def __init__(self, msg: str, code: int=500) -> None:
|
|
self.message = msg
|
|
self.code = code
|