Package version:

The code and message for an error.

interface LogsErrorInfo {
    additionalProperties?: any;
    code: string;
    details?: {};
    innererror?: ErrorInfo;
    message: string;
}

Hierarchy (view full)

Properties

additionalProperties?: any

Additional properties that can be provided on the error info object

code: string

A machine readable error code.

details?: {}

error details.

innererror?: ErrorInfo

Inner error details if they exist.

message: string

A human readable error message.