1import{ApiError}from"./ApiError";23exportclassNotFoundErrorextendsApiError{4constructor(message: string="Resource not found",details?: string){5super(message,404,details);6this.name="NotFoundError";7Object.setPrototypeOf(this,NotFoundError.prototype);8}9}