auth0
Version:
Auth0 Node.js SDK for the Management API v2.
15 lines (14 loc) • 521 B
JavaScript
// This file was auto-generated by Fern from our API Definition.
export 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;
}
}
}