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