UNPKG

csclient

Version:
13 lines (10 loc) 202 B
'use strict'; class APIError extends Error { constructor(code, message) { super(); this.name = 'CloudstackAPIError'; this.code = code; this.message = message; } } module.exports = APIError;