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

com.couchbase.client.core.deps.org.xbill.DNS.lookup.NoSuchDomainException Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
// SPDX-License-Identifier: BSD-3-Clause
package com.couchbase.client.core.deps.org.xbill.DNS.lookup;

import com.couchbase.client.core.deps.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