[docs]
class Error(Exception):
"""Base class for exceptions raised from this module."""
pass
[docs]
class MissingKeyError(Error):
"""Error to indicate a missing parameter key.
Raise this error if the parameter dictionary file does not contain a
requested *key*.
"""
[docs]
class ParameterValueError(Error):
"""Error to indicate a bad parameter values.
Raise this error if a parameter value given by *key* is not of the
expected type.
"""