org.xbill.DNS.InvalidDClassException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of browsermob-proxy Show documentation
Show all versions of browsermob-proxy Show documentation
A programmatic HTTP/S designed for performance and functional testing
// 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);
}
}