/** * This file was auto-generated by Fern from our API Definition. */ import * as errors from "../../errors/index"; import * as MixedbreadAI from "../index"; export class NotFoundError extends errors.MixedbreadAIError { constructor(body: MixedbreadAI.NotFoundErrorBody) { super({ message: "NotFoundError", statusCode: 404, body: body, }); Object.setPrototypeOf(this, NotFoundError.prototype); } }