@awesomeniko/kafka-trail
Version:
A Node.js library for managing message queue with Kafka
24 lines (23 loc) • 917 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 NoHandlersError extends KTCustomError {
constructor(message?: string);
}
declare class UnableDecreasePartitionsError extends KTCustomError {
constructor(message?: string);
}
declare class ArgumentIsRequired extends KTCustomError {
constructor(argName?: string);
}
declare class ProducerNotInitializedError extends KTCustomError {
constructor(message?: string);
}
declare class ProducerInitRequiredForDLQError extends KTCustomError {
constructor(message?: string);
}
export { ConsumerSubscribeError, KTRetryError, NoHandlersError, UnableDecreasePartitionsError, ArgumentIsRequired, ProducerNotInitializedError, ProducerInitRequiredForDLQError, };