Interface JupyterErrorOutputEventMessage

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

interface JupyterErrorOutputEventMessage {
    content: JupyterErrorOutputEventMessageValue;
    truncatedFrom?: number;
}

Properties

Where the compressed message is held.

truncatedFrom?: number

Present when the message was cut at the output cap: the UTF-8 length of the message as the kernel produced it, in bytes.