1 // Copyright (c) 2002-2004 Brian Wellington (bwelling (at) 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 16 TextParseException() { 17 super(); 18 } 19 20 public 21 TextParseException(String s) { 22 super(s); 23 } 24 25 } 26