UNPKG

@contextjs/io

Version:

File system utilities for reading, writing, and inspecting files, directories, and paths.

8 lines (7 loc) 242 B
import { Exception } from "@contextjs/system"; export class FileNotFoundException extends Exception { constructor(file) { super(`The specified file was not found: ${file}`); this.name = FileNotFoundException.name; } }