feat: ✨ implemented api
This commit is contained in:
7
class/errors/NotFoundException.py
Normal file
7
class/errors/NotFoundException.py
Normal 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
|
Reference in New Issue
Block a user