voko-sdk
Version:
Process payments with ease
17 lines (16 loc) • 563 B
TypeScript
import { VokoError } from './voko-error';
export declare class PaymentValidationError extends VokoError {
constructor(message: string, field?: string);
}
export declare class PaymentDeclinedError extends VokoError {
constructor(message: string, reason?: string);
}
export declare class InsufficientFundsError extends VokoError {
constructor(message?: string);
}
export declare class NetworkError extends VokoError {
constructor(message?: string);
}
export declare class AuthenticationError extends VokoError {
constructor(message?: string);
}