intercom-client
Version:
Official Node bindings to the Intercom API
14 lines (13 loc) • 461 B
JavaScript
// This file was auto-generated by Fern from our API Definition.
import * as errors from "../../../../errors/index.mjs";
export class InternalServerError extends errors.IntercomError {
constructor(body, rawResponse) {
super({
message: "InternalServerError",
statusCode: 500,
body: body,
rawResponse: rawResponse,
});
Object.setPrototypeOf(this, InternalServerError.prototype);
}
}