1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/clean-css/lib/properties/invalid-property-error.js

11 lines
316 B
JavaScript
Raw Normal View History

2023-12-18 13:12:25 +08:00
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;