Output of an error that occurred during code cell execution.

interface IError {
    ename: string;
    evalue: string;
    output_type: "error";
    traceback: string[];
}

Hierarchy (view full)

Properties

ename: string

The name of the error.

evalue: string

The value, or message, of the error.

output_type: "error"

Type of cell output.

traceback: string[]

The error's traceback.