mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 08:52:59 +00:00
7 lines
322 B
JavaScript
7 lines
322 B
JavaScript
import { createErrorClass } from './createErrorClass';
|
|
export const ObjectUnsubscribedError = createErrorClass((_super) => function ObjectUnsubscribedErrorImpl() {
|
|
_super(this);
|
|
this.name = 'ObjectUnsubscribedError';
|
|
this.message = 'object unsubscribed';
|
|
});
|
|
//# sourceMappingURL=ObjectUnsubscribedError.js.map
|