1: /* 2: * Runtime error messages. 3: */ 4: 5: 101, "integer expected", 6: 102, "numeric expected", 7: 103, "string expected", 8: 104, "cset expected", 9: 105, "file expected", 10: 106, "procedure or integer expected", 11: 107, "record expected", 12: 108, "list expected", 13: 109, "string or file expected", 14: 110, "string or list expected", 15: 111, "variable expected", 16: 112, "invalid type to size operation", 17: 113, "invalid type to random operation", 18: 114, "invalid type to subscript operation", 19: 115, "list or table expected", 20: 116, "invalid type to element generator", 21: 117, "missing main procedure", 22: 118, "co-expression expected", 23: #ifdef SETS 24: 119, "set expected", 25: #endif SETS 26: 27: 201, "division by zero", 28: 202, "remaindering by zero", 29: 203, "integer overflow", 30: 204, "real overflow, underflow, or division by zero", 31: 205, "value out of range", 32: 206, "negative first operand to real exponentiation", 33: 207, "invalid field name", 34: 208, "second and third arguments to map of unequal length", 35: 209, "invalid second argument to open", 36: 210, "argument to system function too long", 37: 211, "by clause equal to zero", 38: 212, "attempt to read file not open for reading", 39: 213, "attempt to write file not open for writing", 40: 41: 301, "insufficient storage in heap", 42: 302, "insufficient storage in string space", 43: 303, "insufficient storage for garbage collection", 44: 304, "insufficient storage for system stack", 45: 305, "insufficient storage for co-expressions",