mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-13 14:05:27 +00:00
update
This commit is contained in:
18
node_modules/rxjs/_esm2015/util/ObjectUnsubscribedError.js
generated
vendored
Normal file
18
node_modules/rxjs/_esm2015/util/ObjectUnsubscribedError.js
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
/**
|
||||
* An error thrown when an action is invalid because the object has been
|
||||
* unsubscribed.
|
||||
*
|
||||
* @see {@link Subject}
|
||||
* @see {@link BehaviorSubject}
|
||||
*
|
||||
* @class ObjectUnsubscribedError
|
||||
*/
|
||||
export class ObjectUnsubscribedError extends Error {
|
||||
constructor() {
|
||||
const err = super('object unsubscribed');
|
||||
this.name = err.name = 'ObjectUnsubscribedError';
|
||||
this.stack = err.stack;
|
||||
this.message = err.message;
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=ObjectUnsubscribedError.js.map
|
Reference in New Issue
Block a user