01: // Copyright (c) 2003-2004 Brian Wellington (bwelling@xbill.org)
02:
03: package org.xbill.DNS;
04:
05: /**
06: * An exception thrown when a zone transfer fails.
07: *
08: * @author Brian Wellington
09: */
10:
11: public class ZoneTransferException extends Exception {
12:
13: public ZoneTransferException() {
14: super ();
15: }
16:
17: public ZoneTransferException(String s) {
18: super(s);
19: }
20:
21: }
|