import type { CustomErrorOptions } from "../types/CustomErrorOptions"; import { CustomError } from "./CustomError"; export class InternalServerError extends CustomError { constructor(code: string, options: CustomErrorOptions = {}) { super(code, options); Object.setPrototypeOf(this, InternalServerError.prototype); this.name = "InternalServerError"; } }