@impler/shared
Version:
Reusable types and classes to shared between apps and libraries
11 lines (10 loc) • 338 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileNotExistError = void 0;
class FileNotExistError extends Error {
constructor(name) {
super('File not found for the key provided ' + name);
this.name = 'NonExistingFileError';
}
}
exports.FileNotExistError = FileNotExistError;