org.xbill.DNS.lookup.NoSuchDomainException 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-2-Clause
package org.xbill.DNS.lookup;
import org.xbill.DNS.Name;
/**
* Thrown to indicate that no data is associated with the given name, as indicated by the NXDOMAIN
* response code as specified in RF2136 Section 2.2.
*/
public class NoSuchDomainException extends LookupFailedException {
public NoSuchDomainException(Name name, int type) {
super(name, type);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy