hazelcast-client
Version:
Hazelcast - open source In-Memory Data Grid - client for NodeJS
18 lines (17 loc) • 586 B
TypeScript
export declare class HazelcastError extends Error {
cause: Error;
stack: string;
constructor(msg: string, cause?: Error);
}
export declare class AuthenticationError extends HazelcastError {
constructor(msg: string, cause?: Error);
}
export declare class ClientNotActiveError extends HazelcastError {
constructor(msg: string, cause?: Error);
}
export declare class IllegalStateError extends HazelcastError {
constructor(msg: string, cause?: Error);
}
export declare class TopicOverloadError extends HazelcastError {
constructor(msg: string, cause?: Error);
}