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

  1. package gnu.inet;
  2.  
  3. public class PunycodeException extends Exception {
  4.    public static String OVERFLOW = "Overflow.";
  5.    public static String BAD_INPUT = "Bad input.";
  6.  
  7.    public PunycodeException(String m) {
  8.       super(m);
  9.    }
  10. }
  11.