diff options
Diffstat (limited to 'jimbrella/exceptions.py')
-rw-r--r-- | jimbrella/exceptions.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/jimbrella/exceptions.py b/jimbrella/exceptions.py new file mode 100644 index 0000000..3b7fa4c --- /dev/null +++ b/jimbrella/exceptions.py @@ -0,0 +1,11 @@ +"""Defines a few application-specific exceptions for Pythonic code.""" +class UmbrellaNotFoundError(Exception): + """For when an umbrella with required serial is not found in database.""" + pass + + +class UmbrellaStatusError(Exception): + """For when the umbrella to be lent is not available, or when an umbrella to be returned has + never been taken away. Most likely duplicate or erroneous answer sheets submitted by user. + """ + pass |