UNPKG
csclient
Version:
latest (0.6.4)
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.4.0
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.5
An API client for the CloudStack
github.com/ragnar-johannsson/csclient
ragnar-johannsson/csclient
csclient
/
lib
/
apierror.js
13 lines
(10 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
class
APIError
extends
Error
{
constructor
(
code, message
) {
super
();
this
.
name
=
'CloudstackAPIError'
;
this
.
code
= code;
this
.
message
= message; } }
module
.
exports
=
APIError
;