blob: 284273177bdabf677715b7caf04b7e93be47d32b [file] [log] [blame]
Shuyi Chend7955ce2013-05-22 14:51:55 -07001// 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}