Browse Source

Added a new exception raised when a not allowed option is passed to a datahandler

Roland Haroutiounian 8 years ago
parent
commit
3394543af8

+ 4
- 1
lodel/leapi/datahandlers/base_classes.py View File

@@ -10,6 +10,7 @@ import inspect
10 10
 import warnings
11 11
 
12 12
 from lodel.context import LodelContext
13
+from .exceptions import LodelDataHandlerNotAllowedOptionException
13 14
 
14 15
 LodelContext.expose_modules(globals(), {
15 16
     'lodel.exceptions': ['LodelException', 'LodelExceptions',
@@ -62,13 +63,15 @@ class DataHandler(object):
62 63
             setattr(self, argname, argval)
63 64
         self.check_options()
64 65
 
66
+    ## @brief Sets properly casted and checked options for the datahandler
67
+    # @raises LodelDataHandlerNotAllowedOptionException when a passed option is not in the option specifications of the datahandler
65 68
     def check_options(self):
66 69
         for option_name, option_value in self.options_values.items():
67 70
             # TODO Change the call to self.options_spec if the specifications are passed as tuple
68 71
             if option_name in self.options_spec:
69 72
                 self.options_values[option_name] = self.options_spec[option_name].check_value(option_value)
70 73
             else:
71
-                pass  # TODO decide what kind of exception should be raised here
74
+                raise LodelDataHandlerNotAllowedOptionException()
72 75
 
73 76
     @property
74 77
     def options(self):

+ 3
- 0
lodel/leapi/datahandlers/exceptions.py View File

@@ -3,3 +3,6 @@ def LodelDataHandlerException(Exception):
3 3
 
4 4
 def LodelDataHandlerConsistencyException(LodelDataHandlerException):
5 5
     pass
6
+
7
+def LodelDataHandlerNotAllowedOptionException(LodelDataHandlerException):
8
+    pass

Loading…
Cancel
Save