UNPKG

@sahabaplus/moyasar

Version:

A comprehensive TypeScript SDK for integrating with the Moyasar payment gateway

8 lines 282 B
import { MoyasarError } from "../../shared/errors/index"; export class InvoiceError extends MoyasarError { constructor(message, details) { super(message, "INVOICE_ERROR", 500, details ?? {}); this.name = "InvoiceError"; } } //# sourceMappingURL=errors.js.map