Initial commit

This commit is contained in:
2025-12-04 22:24:47 +01:00
commit 453ce10494
106 changed files with 17145 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
"""Custom exceptions for the application."""
class AppException(Exception):
"""Base exception for the application."""
pass
class DatabaseException(AppException):
"""Exception for database errors."""
pass
class AuthenticationException(AppException):
"""Exception for authentication errors."""
pass
class AuthorizationException(AppException):
"""Exception for authorization errors."""
pass