errors¶
Exceptions and warnings for the tripper.datadoc package.
InvalidKeywordError (TripperError, KeyError)
¶
Keyword is not defined.
Source code in tripper/datadoc/errors.py
class InvalidKeywordError(TripperError, KeyError):
"""Keyword is not defined."""
NoSuchTypeError (TripperError, KeyError)
¶
There are no pre-defined type defined with the given name.
Source code in tripper/datadoc/errors.py
class NoSuchTypeError(TripperError, KeyError):
"""There are no pre-defined type defined with the given name."""
ValidateError (TripperError)
¶
Error validating data documentation dict.
Source code in tripper/datadoc/errors.py
class ValidateError(TripperError):
"""Error validating data documentation dict."""