• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2003-2004 Brian Wellington (bwelling@xbill.org)
2 
3 package org.xbill.DNS;
4 
5 /**
6  * An exception thrown when a zone transfer fails.
7  *
8  * @author Brian Wellington
9  */
10 
11 public class ZoneTransferException extends Exception {
12 
13 public
ZoneTransferException()14 ZoneTransferException() {
15 	super();
16 }
17 
18 public
ZoneTransferException(String s)19 ZoneTransferException(String s) {
20 	super(s);
21 }
22 
23 }
24