interface LineProtocolError {
    code:
        | "internal error"
        | "not found"
        | "conflict"
        | "invalid"
        | "empty value"
        | "unavailable";
    err?: string;
    line?: number;
    message?: string;
    op?: string;
}

Properties

code:
    | "internal error"
    | "not found"
    | "conflict"
    | "invalid"
    | "empty value"
    | "unavailable"

Code is the machine-readable error code.

err?: string

Stack of errors that occurred during processing of the request. Useful for debugging.

line?: number

First line in the request body that contains malformed data.

message?: string

Human-readable message.

op?: string

Describes the logical code operation when the error occurred. Useful for debugging.

MMNEPVFCICPMFPCPTTAAATR