@teambit/workspace
Version:
21 lines (19 loc) • 534 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.AlreadyExistsError = void 0;
function _bitError() {
const data = require("@teambit/bit-error");
_bitError = function () {
return data;
};
return data;
}
class AlreadyExistsError extends _bitError().BitError {
constructor(filePath) {
super(`config file at ${filePath} already exist. use override in case you want to override it`);
}
}
exports.AlreadyExistsError = AlreadyExistsError;
//# sourceMappingURL=already-exists.js.map