Interface JupyterErrorOutputEventTraceback

The traceback of an error, with the record of whether it was cut.

interface JupyterErrorOutputEventTraceback {
    content: JupyterErrorOutputEventTracebackValue;
    truncatedFrom?: number;
}

Properties

Where the compressed traceback is held.

truncatedFrom?: number

Present when the traceback was cut at the output cap: the sum of the UTF-8 lengths of all its lines as the kernel produced them, in bytes.