/** * @module errors * @description Centralized error handling for Telegram Bot API */ export { TelegramError, TelegramApiError, TelegramNetworkError, TelegramConfigurationError, TelegramValidationError, TelegramTimeoutError, TelegramRateLimitError, TelegramAuthError, TelegramBadRequestError, TelegramNotFoundError, TelegramConflictError, TelegramServerError, ErrorContext } from './TelegramError.js'; export { ErrorMapper, TelegramErrorCode, TELEGRAM_ERROR_DESCRIPTIONS } from './ErrorMapper.js'; export { TelegramHttpError } from '../transport/TelegramHttpClient.js';