UNPKG

testtrack-cli

Version:

Submit your automated test runs to your Test Track account project

8 lines (7 loc) 308 B
export class FileNotFoundException extends Error { constructor(filePath: string) { super(`File named ${filePath} not found`); // Set the prototype explicitly (needed to support instanceof checks in TypeScript) Object.setPrototypeOf(this, FileNotFoundException.prototype); } }