Skip to content

E6xxx: Runtime Errors

Auto-generated from src/util/diagnostic/codes/

Error List

E6001: Division by zero

Category: Runtime

Message: Attempted to divide by zero

Help: Add a check to prevent division by zero


E6002: Null pointer dereference

Category: Runtime

Message: Attempted to access a null value

Help: Add a null check before accessing the value


E6003: Array index out of bounds

Category: Runtime

Message: Array index is out of bounds at runtime

Help: Ensure the index is within the array bounds


E6004: Stack overflow

Category: Runtime

Message: Recursion depth exceeded stack limit

Help: Reduce recursion depth or use iteration


E6005: Assert failed

Category: Runtime

Message: Assertion failed at runtime

Help: Fix the assertion condition or provide valid input