Source code for myjwt.Exception

"""
Exception package
"""


[docs] class InvalidJWT(Exception): """ Invalid JWT """ def __init__(self, message: str): self.message = message
[docs] class InvalidJwtJson(Exception): """ Invalid InvalidJwtJson """ def __init__(self, message: str): self.message = message
[docs] class InvalidParam(Exception): """ Invalid Param """ def __init__(self, message: str): self.message = message
[docs] class UnknownAlg(Exception): """ UnknownAlg """ def __init__(self, message: str): self.message = message