@maxmind/minfraud-api-node
    Preparing search index...

    Interface WebServiceClientError

    interface WebServiceClientError {
        cause?: unknown;
        code: WebServiceErrorCode;
        error: string;
        status?: number;
        url: string;
    }

    Implemented by

    Index

    Properties

    cause?: unknown

    The underlying error that caused this one, when available (for example, the network error behind a FETCH_ERROR).

    The error code returned by the web service or generated by this client.

    error: string

    A human-readable description of the error. This is an alias of the standard Error message.

    status?: number

    The HTTP status code, when the error originated from an HTTP response. Absent for network-level errors.

    url: string

    The URL that was being requested when the error occurred.