UNPKG
@i-orz/wechat-pay
Version:
latest (0.0.2)
0.0.2
0.0.1
Wechat pay v3 Node.js SDK.
@i-orz/wechat-pay
/
src
/
error.js
12 lines
(9 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
class
WechatPayError
extends
Error
{
constructor
(
message, info
) {
super
(message);
this
.
name
=
this
.
constructor
.
name
;
this
.
info
= info; } }
module
.
exports
=
WechatPayError
;