import { NotFoundError } from './http.js'; export class FileNotFound extends NotFoundError { constructor(message: string) { super(message); } }