@awesomeniko/kafka-trail
Version:
A Node.js library for managing message queue with Kafka
21 lines (20 loc) • 763 B
TypeScript
import { KTCustomError } from "./custom-error.js";
declare class ConsumerSubscribeError extends KTCustomError {
constructor(message?: string);
}
declare class KTRetryError extends KTCustomError {
constructor(message?: string);
}
declare class NoLocalHandlersError extends KTCustomError {
constructor(message?: string);
}
declare class NoHandlersError extends KTCustomError {
constructor(message?: string);
}
declare class UnableDecreasePartitionsError extends KTCustomError {
constructor(message?: string);
}
declare class ArgumentIsRequired extends KTCustomError {
constructor(argName?: string);
}
export { ConsumerSubscribeError, KTRetryError, NoLocalHandlersError, NoHandlersError, UnableDecreasePartitionsError, ArgumentIsRequired, };