E6xxx:运行时错误
自动生成自
src/util/diagnostic/codes/
错误列表
E6001:Division by zero
类别: Runtime
消息: Attempted to divide by zero
帮助: Add a check to prevent division by zero
E6002:Null pointer dereference
类别: Runtime
消息: Attempted to access a null value
帮助: Add a null check before accessing the value
E6003:Array index out of bounds
类别: Runtime
消息: Array index is out of bounds at runtime
帮助: Ensure the index is within the array bounds
E6004:Stack overflow
类别: Runtime
消息: Recursion depth exceeded stack limit
帮助: Reduce recursion depth or use iteration
E6005:Assert failed
类别: Runtime
消息: Assertion failed at runtime
帮助: Fix the assertion condition or provide valid input
