home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2007 April / PCpro_2007_04.ISO / files / dsl / jNetTool.exe / org / xbill / DNS / TextParseException.class (.txt) < prev    next >
Encoding:
Java Class File  |  2005-06-05  |  441 b   |  13 lines

  1. package org.xbill.DNS;
  2.  
  3. import java.io.IOException;
  4.  
  5. public class TextParseException extends IOException {
  6.    public TextParseException() {
  7.    }
  8.  
  9.    public TextParseException(String s) {
  10.       super(s);
  11.    }
  12. }
  13.