mirror of
https://gitflic.ru/project/santaspeen/gitflic.git
synced 2026-04-07 00:06:12 +00:00
Auth
This commit is contained in:
22
gitflic/exceptions.py
Normal file
22
gitflic/exceptions.py
Normal file
@@ -0,0 +1,22 @@
|
||||
class GitflicExceptions(Exception):
|
||||
error_code: int = 1
|
||||
reason: str = None
|
||||
reason_ru: str = None
|
||||
|
||||
|
||||
class AuthError(GitflicExceptions):
|
||||
error_code = 403
|
||||
reason = None
|
||||
reason_ru = None
|
||||
|
||||
|
||||
class NoRights(GitflicExceptions):
|
||||
error_code = 403
|
||||
reason = "Нет прав для доступа."
|
||||
reason_ru = "There are no access rights."
|
||||
|
||||
|
||||
class NotFound(GitflicExceptions):
|
||||
error_code = 404
|
||||
reason = "No data was found for the query."
|
||||
reason_ru = "Данные по запросу не найдены."
|
||||
Reference in New Issue
Block a user