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

org.xbill.DNS.InvalidDClassException Maven / Gradle / Ivy

There is a newer version: 3.6.2_1
Show newest version
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2003-2004 Brian Wellington ([email protected])

package org.xbill.DNS;

/**
 * An exception thrown when an invalid dclass code is specified.
 *
 * @author Brian Wellington
 */
public class InvalidDClassException extends IllegalArgumentException {

  public InvalidDClassException(int dclass) {
    super("Invalid DNS class: " + dclass);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy