Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
553 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | var ObjectUnsubscribedErrorImpl = (function () {
|
---|
4 | function ObjectUnsubscribedErrorImpl() {
|
---|
5 | Error.call(this);
|
---|
6 | this.message = 'object unsubscribed';
|
---|
7 | this.name = 'ObjectUnsubscribedError';
|
---|
8 | return this;
|
---|
9 | }
|
---|
10 | ObjectUnsubscribedErrorImpl.prototype = Object.create(Error.prototype);
|
---|
11 | return ObjectUnsubscribedErrorImpl;
|
---|
12 | })();
|
---|
13 | exports.ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl;
|
---|
14 | //# sourceMappingURL=ObjectUnsubscribedError.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.