01: // Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)
02:
03: package org.xbill.DNS;
04:
05: import java.io.*;
06:
07: /**
08: * An exception thrown when a DNS message is invalid.
09: *
10: * @author Brian Wellington
11: */
12:
13: public class WireParseException extends IOException {
14:
15: public WireParseException() {
16: super ();
17: }
18:
19: public WireParseException(String s) {
20: super(s);
21: }
22:
23: }
|