"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.IgnoredFileError = void 0;
class IgnoredFileError extends Error {
constructor(filepath) {
super(`Skipped due to matching ignore pattern`);
}
}
exports.IgnoredFileError = IgnoredFileError;