auth0
Version:
Auth0 Node.js SDK for the Management API v2.
19 lines (18 loc) • 689 B
JavaScript
;
// This file was auto-generated by Fern from our API Definition.
Object.defineProperty(exports, "__esModule", { value: true });
exports.ManagementTimeoutError = void 0;
class ManagementTimeoutError extends Error {
constructor(message, opts) {
super(message);
Object.setPrototypeOf(this, new.target.prototype);
if (Error.captureStackTrace) {
Error.captureStackTrace(this, this.constructor);
}
this.name = this.constructor.name;
if ((opts === null || opts === void 0 ? void 0 : opts.cause) != null) {
this.cause = opts.cause;
}
}
}
exports.ManagementTimeoutError = ManagementTimeoutError;