D. Error Messages
ERROR
CODE
NUMBER ERROR CODE MESSAGE
2 Insufficient Memory: Not enough RAM memory is
left to store the statement or the new variable
name, or to dimension a new string variable.
3 Value Error: A value expected to be a positive
integer is negative; a value is not within a specific
range.
4 Too Many Variables: The maximum of 128 different
variable names has been exceeded.
5 String Length Error: The user attempted to store
string variables that exceeded the dimensioned
string length.
6 Out of Data: The READ statement requires more
data items than the DATA statement(s) supplied.
7 Line Number Greater Than 32767: The line
number reference is greater than 32767.
8 Input Statement Error: The user attempted to input
a nonnumeric value into a numeric variable.
9 Array or String DIM Error: The DIM size exceeded
5460 for numeric arrays or 32767 for strings; an
array or string was redimensioned; reference was
made to an undimensioned array or string.
11 Floating Point Overflow/Underflow: The user
attempted to divide by zero or to refer to a number
larger than 1 x 10
98
or smaller than 1 x 10
-99
.
12 Line Not Found: A GOSUB, GOTO, or THEN
referenced a nonexistent line number.
13 No Matching FOR Statement: A NEXT was
encountered without a previous FOR, or nested
FOR/NEXT statements do not match properly.
111