Du kannst nicht mehr als 25 Themen auswählen
Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
12345678910 |
- 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;
|