Interface MultiObject

Multi error object output

interface MultiObject {
    info?: Record<string, unknown>;
    message: string;
    name: string;
    subject: string;
    timestamp: string;
    trace: string[];
    uuid: string;
}

Hierarchy (View Summary)

Properties

info?: Record<string, unknown>

Extra error information

message: string

Human friendly error message

name: string

Name of the error

subject: string

Error subject

timestamp: string

Timestamp of the error

trace: string[]

Stack of error messages arranged according to the hierarchy of errors and causes

uuid: string

Identification of the process, request or transaction where the error appears