ts-simple-ast
Version:
TypeScript compiler wrapper for static analysis and code manipulation.
14 lines (13 loc) • 605 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var PathNotFoundError_1 = require("./PathNotFoundError");
var DirectoryNotFoundError = /** @class */ (function (_super) {
tslib_1.__extends(DirectoryNotFoundError, _super);
/** @private */
function DirectoryNotFoundError(dirPath) {
return _super.call(this, dirPath, "Directory", DirectoryNotFoundError.prototype) || this;
}
return DirectoryNotFoundError;
}(PathNotFoundError_1.PathNotFoundError));
exports.DirectoryNotFoundError = DirectoryNotFoundError;