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