interface ErrorDataFields {
    type?: ErrorType;
    key?: string;
    message: string;
    data?: any;
    doc?: ErrorDoc;
    stack?: any;
    causedByError?: ErrorData;
    logs?: any[];
}

Hierarchy (View Summary)

Implemented by

Properties

type?: ErrorType
key?: string
message: string
data?: any
doc?: ErrorDoc
stack?: any
causedByError?: ErrorData
logs?: any[]