mirror of
https://github.com/norohind/FDEV-CAPI-Handler.git
synced 2025-06-08 11:22:29 +03:00
7 lines
258 B
Python
7 lines
258 B
Python
class RefreshFail(Exception):
|
|
def __init__(self, message: str, status: str, state: str):
|
|
self.message = message
|
|
self.status = status
|
|
self.state = state
|
|
super().__init__(str(self.message) + ' for ' + str(self.state))
|