Interface JupyterErrorOutputEvent

Emitted when an error occurs during execution.

interface JupyterErrorOutputEvent {
    executionCount?: number;
    kernelId?: string;
    name: string;
    traceback: string[];
    value: string;
}

Properties

executionCount?: number

The execution count of the cell.

kernelId?: string

The kernel that finished this cell.

name: string

The name of the error.

traceback: string[]

The stack trace.

value: string

The error message.