home *** CD-ROM | disk | FTP | other *** search
/ Transactor / Transactor_08_1985_Transactor_Publishing.d64 / generror.e.l < prev    next >
Text File  |  2023-02-26  |  2KB  |  66 lines

  1. 0010 dim a$ of 80
  2.  
  3. 0020 open file 1,"@0:comalerrors",write
  4.  
  5. 0030 while not eod do
  6.  
  7. 0040   read errno,lng,sev,a$
  8.  
  9. 0050   print file 1: chr$(errno),chr$(lng),chr$(sev),a$,
  10.  
  11. 0060 endwhile 
  12.  
  13. 0070 close
  14.  
  15. 0080 end 
  16.  
  17. 1000 data 0,12,0,"format error"
  18.  
  19. 1010 data 1,12,0,"syntax error"
  20.  
  21. 1020 data 2,13,0,"type conflict"
  22.  
  23. 1030 data 3,23,0,"function argument error"
  24.  
  25. 1040 data 4,37,0,"statement too long or too complicated"
  26.  
  27. 1050 data 5,12,1,"system error"
  28.  
  29. 1060 data 6,13,0,"name too long"
  30.  
  31. 1070 data 7,13,0,"bracket error"
  32.  
  33. 1080 data 8,8,0,"overflow"
  34.  
  35. 1090 data 9,29,0,"error in structured statement"
  36.  
  37. 1100 data 10,23,0,"error in goto statement"
  38.  
  39. 1110 data 11,14,1,"stack overflow"
  40.  
  41. 1120 data 12,16,0,"unknown variable"
  42.  
  43. 1130 data 13,21,1,"procedure param error"
  44.  
  45. 1140 data 14,17,1,"index/param error"
  46.  
  47. 1150 data 15,15,0,"substring error"
  48.  
  49. 1160 data 16,45,0,"command, array, substring, or procedure error"
  50.  
  51. 1170 data 17,11,0,"index error"
  52.  
  53. 1180 data 18,22,0,"illegal no. of indices"
  54.  
  55. 1190 data 19,23,0,"string assignment error"
  56.  
  57. 1200 data 20,23,0,"function argument error"
  58.  
  59. 1210 data 21,15,1,"not implemented"
  60.  
  61. 1220 data 22,20,0,"zone value incorrect"
  62.  
  63. 1230 data 23,8,0,"step = 0"
  64.  
  65. 1240 data 24,15,1,"array redefined"
  66.  
  67. 1250 data 25,15,1,"dimension error"
  68.  
  69. 1260 data 26,10,0,"case error"
  70.  
  71. 1270 data 27,11,0,"end of data"
  72.  
  73. 1280 data 28,17,0,"file already open"
  74.  
  75. 1290 data 29,16,0,"file input error"
  76.  
  77. 1300 data 30,11,0,"end-of-file"
  78.  
  79. 1310 data 31,13,0,"file not open"
  80.  
  81. 1320 data 32,16,1,"con not possible"
  82.  
  83. 1330 data 33,20,1,"error in print using"
  84.  
  85. 1340 data 34,16,0,"division by zero"
  86.  
  87. 1350 data 35,21,1,"program not prepassed"
  88.  
  89. 1360 data 36,14,0,"file not found"
  90.  
  91. 1370 data 37,1,1," "
  92.  
  93. 1380 data 38,14,1,"not input file"
  94.  
  95. 1390 data 39,18,1,"device not present"
  96.  
  97. 1400 data 40,15,1,"not output file"
  98.  
  99. 1410 data 41,22,0,"string not dimensioned"
  100.  
  101. 1420 data 42,20,1,"local variable error"
  102.  
  103. 1430 data 52,14,0,"too many names"
  104.  
  105. 1440 data 53,27,1,"function value not returned"
  106.  
  107. 1450 data 54,15,0,"not a statement"
  108.  
  109. 1460 data 55,33,0,"not a command or simple statement"
  110.  
  111. 1470 data 56,12,0,"',' expected"
  112.  
  113. 1480 data 57,19,0,"number out of range"
  114.  
  115. 1490 data 58,19,0,"expression expected"
  116.  
  117. 1500 data 59,15,0,"not implemented"
  118.  
  119. 1510 data 60,16,0,"operand expected"
  120.  
  121. 1520 data 91,13,0,"user error #1"
  122.  
  123. 1530 data 92,13,0,"user error #2"
  124.  
  125. 1540 data 100,18,1,"graphic not active"
  126.  
  127. 1550 data 101,13,0,"illegal color"
  128.  
  129. 1560 data 102,24,0,"illegal plot coordinates"
  130.  
  131.