home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 25 / CDROM25.iso / Share / prog / VJ11 / VJTRIAL.EXE / rdoError.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-12-11  |  1.3 KB  |  26 lines

  1. package msrdo20;
  2.  
  3. public interface rdoError {
  4.    int getNumber();
  5.  
  6.    String getDescription();
  7.  
  8.    String getSQLState();
  9.  
  10.    int getSQLRetcode();
  11.  
  12.    String getDescriptionA();
  13.  
  14.    String getHelpFileA();
  15.  
  16.    String getSQLStateA();
  17.  
  18.    int getHelpContext();
  19.  
  20.    String getHelpFile();
  21.  
  22.    String getSourceA();
  23.  
  24.    String getSource();
  25. }
  26.