1 23 24 package org.jivesoftware.stringprep; 25 26 public class StringprepException 27 extends Exception  28 { 29 public static String CONTAINS_UNASSIGNED = "Contains unassigned code points."; 30 public static String CONTAINS_PROHIBITED = "Contains prohibited code points."; 31 public static String BIDI_BOTHRAL = "Contains both R and AL code points."; 32 public static String BIDI_LTRAL = "Leading and trailing code points not both R or AL."; 33 34 public StringprepException(String m) 35 { 36 super(m); 37 } 38 } | Popular Tags |