This commit is contained in:
2025-05-14 18:01:57 +03:00
commit 0294c3d540
7 changed files with 300 additions and 0 deletions

6
exceptions.py Normal file
View File

@@ -0,0 +1,6 @@
class InvalidToken(Exception):
def __init__(self, *args):
pass
def __str__(self):
return "Токен недействителен"