Interface IMongoQueueTaskError

An entry for ``.

interface IMongoQueueTaskError {
    details: Nullable<string>;
    message: Nullable<string>;
    name: Nullable<string>;
    occurredIn?: string;
    stack: Nullable<string>;
    time: Date;
}

Properties

details: Nullable<string>

Detailed information.

message: Nullable<string>

(Short) Message.

name: Nullable<string>

Name / type of the error.

occurredIn?: string

A string indicating, in which system / process / pod the error occurred.

stack: Nullable<string>

Stack trace.

time: Date

The timestamp.

Generated using TypeDoc