auth0
Version:
Auth0 Node.js SDK for the Management API v2.
16 lines (15 loc) • 556 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) {
super(message);
Object.setPrototypeOf(this, new.target.prototype);
if (Error.captureStackTrace) {
Error.captureStackTrace(this, this.constructor);
}
this.name = this.constructor.name;
}
}
exports.ManagementTimeoutError = ManagementTimeoutError;