Files
conference-room-booking-system/frontend/node_modules/eslint-webpack-plugin/dist/ESLintError.js
2025-08-20 21:01:11 -04:00

15 lines
242 B
JavaScript

"use strict";
class ESLintError extends Error {
/**
* @param {string=} messages
*/
constructor(messages) {
super(`[eslint] ${messages}`);
this.name = 'ESLintError';
this.stack = '';
}
}
module.exports = ESLintError;