home *** CD-ROM | disk | FTP | other *** search
- package gnu.inet;
-
- public class IDNAException extends Exception {
- public static String CONTAINS_NON_LDH = "Contains non-LDH characters.";
- public static String CONTAINS_HYPHEN = "Leading or trailing hyphen not allowed.";
- public static String CONTAINS_ACE_PREFIX = "ACE prefix (xn--) not allowed.";
- public static String TOO_LONG = "String too long.";
-
- public IDNAException(String m) {
- super(m);
- }
-
- public IDNAException(StringprepException e) {
- super(e);
- }
-
- public IDNAException(PunycodeException e) {
- super(e);
- }
- }
-