org.xbill.DNS.lookup.NoSuchRRSetException 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;
import org.xbill.DNS.Name;
/**
* Thrown to indicate that records of the name and type queried does not exist, corresponding to the
* NXRRSET return code as specified in RFC2136 Section 2.2.
*/
public class NoSuchRRSetException extends LookupFailedException {
public NoSuchRRSetException(Name name, int type) {
super(name, type);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy