feat: implemented api

This commit is contained in:
2025-01-05 20:34:15 +01:00
parent c4de1d11ec
commit 695eaf576e
5 changed files with 189 additions and 25 deletions

View File

@ -0,0 +1,7 @@
class NotFoundError(Exception):
def __init__(self, message, errors):
# Call the base class constructor with the parameters it needs
super().__init__(message)
# Now for your custom code...
self.errors = errors