ErrorData
interface ErrorData {
message: string;
code?: string;
details?: any;
}Source: global.ts:1959
The payload of an error:occurred event — a human-readable message plus an optional machine code and extra details for debugging.
Properties
message: string
Human-readable error message.
code: string
Machine-readable error code, when available.
details: any
Extra context about the error, when available.