|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
316 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 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.