@nestjstools/messaging
Version:
Simplifies asynchronous and synchronous message handling with support for buses, handlers, channels, and consumers. Build scalable, decoupled applications with ease and reliability.
8 lines (7 loc) • 359 B
TypeScript
import { ExceptionListenerRegistry } from './exception-listener.registry';
import { ExceptionContext } from './exception-context';
export declare class ExceptionListenerHandler {
private readonly exceptionListenerRegistry;
constructor(exceptionListenerRegistry: ExceptionListenerRegistry);
handleError(context: ExceptionContext): Promise<void>;
}