All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xbill.DNS.lookup.NoSuchRRSetException Maven / Gradle / Ivy

There is a newer version: 3.6.2_1
Show newest version
// 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