RangeError
Code
RUNTIME/RANGE_ERROR
What it means
A runtime RangeError was caught and normalized into AppError (excluding buffer out-of-bounds cases).
When it happens
RangeErroris normalized intoAppError(when it is not a buffer OOB case).
Typical scenarios:
- Invalid array length
- Numeric values outside allowed ranges for an API
How to handle
- Treat as a bug signal and capture
meta.viaat the boundary.
Last updated on