UNPKG
randalthor-r6statsapi
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
R6Stats Node Wrapper
randalthor-r6statsapi
/
errors.js
15 lines
(11 loc)
•
290 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Copied from existing depreciated R6STATS npm Library */
function
ServiceResponseError
(
message
) {
this
.
name
=
"ServiceResponseError"
;
this
.
message
= message ||
""
; }
ServiceResponseError
.
prototype
=
Error
.
prototype
;
module
.
exports
= {
ServiceResponseError
};