UNPKG

@sastatesla/payment-gateway-sdk

Version:

A unified interface for integrating multiple payment providers (e.g., Razorpay, Cashfree) in your Node.js application.

14 lines 438 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StorageError = void 0; class StorageError extends Error { constructor(message, code, details) { super(message); this.name = "StorageError"; this.code = code; this.details = details; Error.captureStackTrace(this, this.constructor); } } exports.StorageError = StorageError; //# sourceMappingURL=error.js.map