init
This commit is contained in:
commit
ec53fcbe95
1905 changed files with 513762 additions and 0 deletions
15
constants/errorIds.ts
Normal file
15
constants/errorIds.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
/**
|
||||
* Error IDs for tracking error sources in production.
|
||||
* These IDs are obfuscated identifiers that help us trace
|
||||
* which logError() call generated an error.
|
||||
*
|
||||
* These errors are represented as individual const exports for optimal
|
||||
* dead code elimination (external build will only see the numbers).
|
||||
*
|
||||
* ADDING A NEW ERROR TYPE:
|
||||
* 1. Add a const based on Next ID.
|
||||
* 2. Increment Next ID.
|
||||
* Next ID: 346
|
||||
*/
|
||||
|
||||
export const E_TOOL_USE_SUMMARY_GENERATION_FAILED = 344
|
||||
Loading…
Add table
Add a link
Reference in a new issue