source dump of claude code
1/**
2 * Error IDs for tracking error sources in production.
3 * These IDs are obfuscated identifiers that help us trace
4 * which logError() call generated an error.
5 *
6 * These errors are represented as individual const exports for optimal
7 * dead code elimination (external build will only see the numbers).
8 *
9 * ADDING A NEW ERROR TYPE:
10 * 1. Add a const based on Next ID.
11 * 2. Increment Next ID.
12 * Next ID: 346
13 */
14
15export const E_TOOL_USE_SUMMARY_GENERATION_FAILED = 344