ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
13 lines (11 loc) • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const BaseError_1 = require("./BaseError");
class DirectoryNotFoundError extends BaseError_1.BaseError {
constructor(dirPath) {
super(`Directory not found: ${dirPath}`);
this.dirPath = dirPath;
}
}
exports.DirectoryNotFoundError = DirectoryNotFoundError;
//# sourceMappingURL=DirectoryNotFoundError.js.map