UNPKG

@limitly/limitly-js

Version:

Official Node.js SDK for Limitly - API Key management, plans, users and request validation

14 lines 417 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LimitlyError = void 0; // Error types class LimitlyError extends Error { constructor(message, statusCode, response) { super(message); this.statusCode = statusCode; this.response = response; this.name = 'LimitlyError'; } } exports.LimitlyError = LimitlyError; //# sourceMappingURL=index.js.map