UNPKG
paychangu-js
Version:
latest (2.1.2)
2.1.2
2.1.1
2.1.0
Paychangu JavaScript SDK for easy integration of payment services
paychangu-js
/
dist
/
utils
/
errors.js
12 lines
(11 loc)
•
326 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
PaychanguError
=
void
0
;
class
PaychanguError
extends
Error
{
constructor
(
message, details
) {
super
(message);
this
.
details
= details;
this
.
name
=
'PaychanguError'
; } }
exports
.
PaychanguError
=
PaychanguError
;