org.xbill.DNS.lookup.InvalidZoneDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.dnsjava
Show all versions of org.apache.servicemix.bundles.dnsjava
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
// SPDX-License-Identifier: BSD-3-Clause
package org.xbill.DNS.lookup;
/**
* Sometimes DNS zone data involved in the lookup might be violating specifications. For example, a
* DNAME expansion might result in names that are too long or a query response might hold multiple
* CNAME records.
*/
public class InvalidZoneDataException extends LookupFailedException {
InvalidZoneDataException(String message, Throwable inner) {
super(message, inner);
}
public InvalidZoneDataException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy