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