1 2 3 4 5 6 7 8 9 10 | 1 1 2 2 1 | /** * an error thrown when an action is invalid because the object * has been unsubscribed */ export class ObjectUnsubscribedError extends Error { constructor() { super('object unsubscribed'); this.name = 'ObjectUnsubscribedError'; } } |