export class FileNotFoundError extends Error { constructor(...args: ConstructorParameters) { super(...args); this.name = 'FileNotFoundError'; } }