home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / BEEHIVE / ZSUS / ZSUS009.LBR / Z34ERR12.LBR / Z34ERR12.DZC / Z34ERR12.DOC
Text File  |  1990-06-23  |  3KB  |  92 lines

  1.  
  2.                          Z34 ERROR CODES
  3.  
  4.                    For Z34ERR.LIB, Version 1.2
  5.  
  6.  
  7. The Z34ERR.LIB file defines the ZCPR34 Command Processor error 
  8. codes and provides macros for generating the associated error 
  9. messages.
  10.  
  11. To ensure consistent numbering and usage, additions to this list 
  12. should be proposed to:  Jay Sage, (617)-965-7259 Z-Node #3.
  13.  
  14.      1    DUCHG     Directory change error -- attempt to change
  15.                     logged directory when under control of wheel
  16.                     byte and wheel is off.
  17.  
  18.      2    BADDIR    Bad directory specification -- logging of
  19.                     user number beyond legal range, nonexistent
  20.                     named directory.
  21.  
  22.      3    BADPASS   Bad password -- incorrect password entered.
  23.  
  24.      4    UNKERR    Unknown error -- any error with no error
  25.                     code.
  26.  
  27.      5    BADCMD    Bad command form -- wildcard or filetype
  28.                     present in command verb.
  29.  
  30.      6    ECPERR    ECP error -- command could not be executed
  31.                     by ECP, or error handling was forced by a
  32.                     transient for its own reasons (do not change
  33.                     from 6).
  34.  
  35.      7    NOCMD     Command file not found -- command that skips
  36.                     ECP could not be executed, GET could not find
  37.                     file to load.
  38.  
  39.      8    AMBIG     Ambiguous file specification where not
  40.                     allowed (SAVE, GET, REN).
  41.  
  42.      9    BADNUM    Bad numerical value -- not a number where
  43.                     number expected, number out of range.
  44.  
  45.     10    NOFILE    File not found -- REN, TYPE, LIST could not
  46.                     find a specified file.
  47.  
  48.     11    DISKFULL  Disk directory or data area full.
  49.  
  50.     12    TPAFULL   TPA overflow error (out of memory).
  51.  
  52.     13    SEGSIZE   ZCPR3 segment is too big to fit in the
  53.                     available buffer.
  54.  
  55.     14    SEGADDR   An address in the ZCPR3 segment is incorrect
  56.                     for the current buffer.
  57.  
  58.     15    MCLOVFL   The command line would overflow the available
  59.                     command line buffer.
  60.  
  61.     16    DUPSPEC   Duplicate filespec -- source and destination
  62.                     filenames and drive/user are the same.
  63.  
  64.     17    FILERO    File is read-only.
  65.  
  66.     18    DISKRO    Disk is read-only.
  67.  
  68.     19    BADOPT    Invalid option -- unrecognized or conflicting
  69.                     options.
  70.  
  71.     20    RSXLOAD   An RSX cannot be loaded, possibly because
  72.                     there are other RSX's in memory.
  73.  
  74.     21    RSXREMOVE An RSX cannot be removed, possibly because
  75.                     there are lower RSX's in memory or a special
  76.                     removal tool is required.
  77.  
  78. USAGE:
  79.  
  80.      (1) "Include" the Z34ERR.LIB file in the source program.
  81.  
  82.      (2) Generate the table of pointers to the error messages
  83.          with:
  84.                ECTABLE
  85.  
  86.      (3) Generate the messages:
  87.                ECMSGS
  88.  
  89.      (4) Index into the table using the error code number, obtain
  90.          the message pointer, and use a string-print routine to
  91.          display it.
  92.