Interface VonageError

Vonage Error

interface VonageError {
    code: Nullable<string>;
    kmpCause: Nullable<Error>;
    message: string;
    name: string;
    stack?: string;
    type: VonageErrorType;
}

Properties

code: Nullable<string>
kmpCause: Nullable<Error>
message: string
name: string
stack?: string

Type of the error