1 // Copyright (c) 2002-2004 Brian Wellington (bwelling@xbill.org) 2 3 package org.xbill.DNS; 4 5 import java.io.*; 6 7 /** 8 * An exception thrown when unable to parse text. 9 * 10 * @author Brian Wellington 11 */ 12 13 public class TextParseException extends IOException { 14 15 public TextParseException()16TextParseException() { 17 super(); 18 } 19 20 public TextParseException(String s)21TextParseException(String s) { 22 super(s); 23 } 24 25 } 26