org.xbill.DNS.ZoneTransferException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ddns-dnsjava Show documentation
Show all versions of ddns-dnsjava Show documentation
DiscoveryDNS fork of DNSJava project
// Copyright (c) 2003-2004 Brian Wellington ([email protected])
package org.xbill.DNS;
/**
* An exception thrown when a zone transfer fails.
*
* @author Brian Wellington
*/
public class ZoneTransferException extends Exception {
public
ZoneTransferException() {
super();
}
public
ZoneTransferException(String s) {
super(s);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy