mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
12 lines
477 B
JavaScript
12 lines
477 B
JavaScript
|
const ObjectUnsubscribedErrorImpl = (() => {
|
||
|
function ObjectUnsubscribedErrorImpl() {
|
||
|
Error.call(this);
|
||
|
this.message = 'object unsubscribed';
|
||
|
this.name = 'ObjectUnsubscribedError';
|
||
|
return this;
|
||
|
}
|
||
|
ObjectUnsubscribedErrorImpl.prototype = Object.create(Error.prototype);
|
||
|
return ObjectUnsubscribedErrorImpl;
|
||
|
})();
|
||
|
export const ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl;
|
||
|
//# sourceMappingURL=ObjectUnsubscribedError.js.map
|