Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 327x 327x 327x 327x 327x 327x 327x 327x 327x 327x 327x 327x 327x 3x 3x 3x 3x 3x 3x 3x 327x | import { CompilerError } from './CompilerError.js';
/**
* Specialized error class for CSS processing and preprocessor errors or warnings.
* @augments CompilerError
*/
export class StyleCompilerError extends CompilerError {
/**
* Creates an instance of StyleCompilerError.
* @param {string} code - The style compiler error or warning code.
* @param {...any} args - Arguments to format within the template message.
*/
constructor(code, ...args) {
super(code, ...args);
/**
* Custom name identifier for style compiler errors.
* @type {string}
*/
this.name = 'StyleCompilerError';
}
}
|