home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2007 April / PCpro_2007_04.ISO / files / dsl / jNetTool.exe / gnu / inet / StringprepException.class (.txt) < prev   
Encoding:
Java Class File  |  2005-06-05  |  778 b   |  13 lines

  1. package gnu.inet;
  2.  
  3. public class StringprepException extends Exception {
  4.    public static String CONTAINS_UNASSIGNED = "Contains unassigned code points.";
  5.    public static String CONTAINS_PROHIBITED = "Contains prohibited code points.";
  6.    public static String BIDI_BOTHRAL = "Contains both R and AL code points.";
  7.    public static String BIDI_LTRAL = "Leading and trailing code points not both R or AL.";
  8.  
  9.    public StringprepException(String m) {
  10.       super(m);
  11.    }
  12. }
  13.