great_expectations.validator.exception_info
¶
Module Contents¶
Classes¶
|
Analogously to the way “SerializableDictDot” extends “DictDot” to provide JSON serialization, the present class, |
-
class
great_expectations.validator.exception_info.
ExceptionInfo
(exception_traceback: str, exception_message: str, raised_exception: bool = True)¶ Bases:
great_expectations.types.base.SerializableDotDict
Analogously to the way “SerializableDictDot” extends “DictDot” to provide JSON serialization, the present class, “SerializableDotDict” extends “DotDict” to provide JSON-serializable version of the “DotDict” class as well. Since “DotDict” is already YAML-serializable, “SerializableDotDict” is both YAML-serializable and JSON-serializable.
-
to_json_dict
(self)¶
-
property
exception_traceback
(self)¶
-
property
exception_message
(self)¶
-
property
raised_exception
(self)¶
-
__repr__
(self)¶ Return repr(self).
-
property
id
(self)¶
-
__eq__
(self, other)¶ Return self==value.
-
__ne__
(self, other)¶ Return self!=value.
-
__str__
(self)¶ Return str(self).
-
__hash__
(self)¶ Overrides the default implementation
-