15 lines
354 B
TypeScript
15 lines
354 B
TypeScript
/**
|
|
* Core error handling for Elasticsearch client
|
|
*
|
|
* This module provides:
|
|
* - Typed error hierarchy with specific error classes
|
|
* - Retry policies with configurable strategies
|
|
* - Error context and metadata
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
|
|
export * from './types.js';
|
|
export * from './elasticsearch-error.js';
|
|
export * from './retry-policy.js';
|