home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 January / PCO0198.ISO / browser / net_linx / java40.jar / netscape / softupdate / RegistryErrors.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-11-03  |  907 b   |  24 lines

  1. package netscape.softupdate;
  2.  
  3. public interface RegistryErrors {
  4.    int REGERR_OK = 0;
  5.    int REGERR_FAIL = 1;
  6.    int REGERR_NOMORE = 2;
  7.    int REGERR_NOFIND = 3;
  8.    int REGERR_BADREAD = 4;
  9.    int REGERR_BADLOCN = 5;
  10.    int REGERR_PARAM = 6;
  11.    int REGERR_BADMAGIC = 7;
  12.    int REGERR_BADCHECK = 8;
  13.    int REGERR_NOFILE = 9;
  14.    int REGERR_MEMORY = 10;
  15.    int REGERR_BUFTOOSMALL = 11;
  16.    int REGERR_NAMETOOLONG = 12;
  17.    int REGERR_REGVERSION = 13;
  18.    int REGERR_DELETED = 14;
  19.    int REGERR_BADTYPE = 15;
  20.    int REGERR_NOPATH = 16;
  21.    int REGERR_BADNAME = 17;
  22.    int REGERR_SECURITY = 99;
  23. }
  24.