Files
wishthis/node_modules/@adobe/css-tools/dist/esm/CssParseError.js
2025-07-08 14:47:27 +02:00

16 lines
387 B
JavaScript

export default class CssParseError extends Error {
reason;
filename;
line;
column;
source;
constructor(filename, msg, lineno, column, css) {
super(filename + ':' + lineno + ':' + column + ': ' + msg);
this.reason = msg;
this.filename = filename;
this.line = lineno;
this.column = column;
this.source = css;
}
}