WireParseException.java revision d7955ce24d294fb2014c59d11fca184471056f44
1// Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)
2
3package org.xbill.DNS;
4
5import java.io.*;
6
7/**
8 * An exception thrown when a DNS message is invalid.
9 *
10 * @author Brian Wellington
11 */
12
13public class WireParseException extends IOException {
14
15public
16WireParseException() {
17	super();
18}
19
20public
21WireParseException(String s) {
22	super(s);
23}
24
25public
26WireParseException(String s, Throwable cause) {
27	super(s);
28	initCause(cause);
29}
30
31}
32