home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / AspLocalizedStrings.java < prev    next >
Text File  |  1997-10-25  |  2KB  |  42 lines

  1. /*  ********************************************************************************
  2.     AspLocalizedStrings.java *******************************************************
  3.     ********************************************************************************  */
  4.  
  5. package aspcomp;
  6.  
  7. /**
  8.  * Localizable error message strings.
  9.  */
  10.  
  11. public interface AspLocalizedStrings
  12. {
  13.  
  14. /*  ********************************************************************************
  15.     Exception Messages *************************************************************
  16.     ********************************************************************************  */
  17.  
  18.     public static final String ASP_E_NON_STRING_DICT_KEY =
  19.         new String("AspComponent: Get/Put attempted with a non-String key");
  20.     
  21.     public static final String ASP_E_DICT_REMOVE =
  22.         new String("AspComponent: Remove attempted on an ASP dictionary");
  23.  
  24.     public static final String ASP_E_FAIL_GET_CONTEXT =
  25.         new String("AspComponent: Retreiving MTx object context failed");
  26.  
  27.     public static final String ASP_E_FAIL_GET_INTRINSIC =
  28.         new String("AspComponent: Failure in getting ASP intrinsic object");
  29.  
  30.     public static final String ASP_E_INTERNAL_FAILURE =
  31.         new String("AspComponent: Internal error detected");
  32.  
  33.     public static final String ASP_E_READ_ONLY_DICT =
  34.         new String("AspComponent: Put attempted on read-only ASP dicitonary");
  35.  
  36.     public static final String ASP_E_UNMARKED_STREAM =
  37.         new String("AspComponent: Reset attempted on unmarked InputStream");
  38.  
  39.     public static final String ASP_E_COOKIE_PUT =
  40.         new String("AspComponent: Put attempted on Cookie dictionary");
  41. }
  42.