parcoursup/node_modules/clean-css/lib/optimizer/invalid-property-error.js
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01:00

11 lines
316 B
JavaScript

function InvalidPropertyError(message) {
this.name = 'InvalidPropertyError';
this.message = message;
this.stack = (new Error()).stack;
}
InvalidPropertyError.prototype = Object.create(Error.prototype);
InvalidPropertyError.prototype.constructor = InvalidPropertyError;
module.exports = InvalidPropertyError;