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

org.xbill.DNS.lookup.InvalidZoneDataException 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;

/**
 * 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