frontend/.pnpm-store/v3/files/e3/fb15493607aa29245ef267e24f39dfc9dd47401a4f500d34bc1bd6e2b8e6678022c8732efc530974e77b96c74217f24880d0c40085fac0048f48e00890c7db

12 lines
477 B
Plaintext

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