allFilesIgnoredError.js 301 B

1234567891011
  1. 'use strict';
  2. class AllFilesIgnoredError extends Error {
  3. constructor() {
  4. super();
  5. this.message = `All input files were ignored because of the ignore pattern. Either change your input, ignore pattern or use "--allow-empty-input" to allow no inputs`;
  6. }
  7. }
  8. module.exports = AllFilesIgnoredError;