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 PathNotFoundException extends Exception { constructor(path) { super(`The specified path was not found: ${path}`); this.name = PathNotFoundException.name; } }