diff options
Diffstat (limited to 'servo')
-rw-r--r-- | servo/exceptions.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/servo/exceptions.py b/servo/exceptions.py index f4910ba..2673e95 100644 --- a/servo/exceptions.py +++ b/servo/exceptions.py @@ -4,3 +4,8 @@ class ConfigurationError(Exception): def __init__(self, arg): super(ConfigurationError, self).__init__(arg) + + +class InventoryAlreadyAtLocation(Exception): + def __init__(self, arg): + super(InventoryAlreadyAtLocation, self).__init__(arg) |