main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
316 bytes
|
Line | |
---|
1 | function InvalidPropertyError(message) {
|
---|
2 | this.name = 'InvalidPropertyError';
|
---|
3 | this.message = message;
|
---|
4 | this.stack = (new Error()).stack;
|
---|
5 | }
|
---|
6 |
|
---|
7 | InvalidPropertyError.prototype = Object.create(Error.prototype);
|
---|
8 | InvalidPropertyError.prototype.constructor = InvalidPropertyError;
|
---|
9 |
|
---|
10 | module.exports = InvalidPropertyError;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.