Interface VonageError

Vonage Error

interface VonageError {
    code: Nullable<string>;
    isRetriable: boolean;
    kmpCause: Nullable<Error>;
    message: string;
    name: string;
    retryAfter: Nullable<number>;
    source: Nullable<string>;
    stack?: string;
    type: VonageErrorType;
}

Properties

code: Nullable<string>
isRetriable: boolean
kmpCause: Nullable<Error>
message: string
name: string
retryAfter: Nullable<number>
source: Nullable<string>
stack?: string

Type of the error