UNPKG

@contextjs/io

Version:

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

8 lines (7 loc) 239 B
import { Exception } from "@contextjs/system"; export class FileExistsException extends Exception { constructor(file) { super(`The specified file already exists: ${file}`); this.name = FileExistsException.name; } }