TracebackSummary
- class caqtus.session.TracebackSummary(
- exc_type: str,
- exc_msg: str,
- notes: list[str] | None,
- cause: TracebackSummary | None,
- context: TracebackSummary | None,
- exceptions: list[TracebackSummary] | None,
Bases:
objectRepresents a summary of an exception and its traceback.
- cause
The exception that caused this exception, if any.
- Type:
- context
The exception that was being handled when this exception was raised, if any.
- Type:
- exceptions
A list of exceptions that were caught by this exception if it is an instance of BaseExceptionGroup.
- Type:
list[caqtus.session._exception_summary.TracebackSummary] | None