misc: added NotFound exception
This commit is contained in:
parent
c1de01a5a5
commit
4487a1ba81
1 changed files with 6 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue