(self)
| 371 | |
| 372 | @property |
| 373 | def error_context(self) -> ErrorContextType: |
| 374 | if not self._context: |
| 375 | if self._base: |
| 376 | base_ec = self._base.error_context() or dict() |
| 377 | else: |
| 378 | base_ec = dict() |
| 379 | self._context = ErrorContext.from_dict(**base_ec) |
| 380 | return self._context |
| 381 | |
| 382 | @property |
| 383 | def message(self) -> Optional[str]: |
no test coverage detected