@dolittle/sdk.resilience
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
15 lines (13 loc) • 431 B
text/typescript
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
/**
* The exception that gets thrown when a retrying observable is cancelled.
*/
export class RetryCancelled extends Error {
/**
* Initialises a new instance of the {@link RetryCancelled} class.
*/
constructor() {
super('Retry was cancelled');
}
}