Commit b3556add authored by dirtyDan's avatar dirtyDan Committed by GitHub

add RefreshTokenException (#949)

Co-authored-by: default avatarTimsXH <44843555+TimsXH@users.noreply.github.com>
parent 2d638de0
......@@ -9,6 +9,11 @@ class TokenExpiryException(Exception):
def __init__(self, msg):
super().__init__(msg)
class RefreshTokenException(Exception):
def __init__(self, msg):
super().__init__(msg)
class Token:
def __init__(self, config):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment