UNPKG
enot.io
Version:
latest (1.0.9-rc2)
1.0.9-rc2
Module for the Enot.io payment system.
github.com/Noop1/enot.io
Noop1/enot.io
enot.io
/
src
/
api
/
apierror.js
12 lines
(9 loc)
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
class
APIError
extends
Error
{
constructor
(message) {
super
(message);
this
.message = message;
this
.name =
'APIError'
; Error.captureStackTrace(
this
); } } exports.APIError = APIError;