blob: 3ba487b4fe16b13ffb42deb151edf83575d014a9 [file] [log] [blame]
Shuyi Chend7955ce2013-05-22 14:51:55 -07001// Copyright (c) 2003-2004 Brian Wellington (bwelling@xbill.org)
2
3package org.xbill.DNS;
4
5/**
6 * An exception thrown when a zone transfer fails.
7 *
8 * @author Brian Wellington
9 */
10
11public class ZoneTransferException extends Exception {
12
13public
14ZoneTransferException() {
15 super();
16}
17
18public
19ZoneTransferException(String s) {
20 super(s);
21}
22
23}