misc: added NotFound exception

This commit is contained in:
Seaswimmer 2023-12-22 13:46:22 -05:00
parent c1de01a5a5
commit 4487a1ba81
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -10,6 +10,12 @@ class Forbidden(Exception):
Raised when the authenticated user does not have the ability to do an action.
"""
class NotFound(Exception):
"""
Raised when a resource cannot be found.
"""
class PyZiplineError(Exception):
"""
Raised when an error occurs in the PyZipline library.