blob: 7c6127665bb89ea4071c48e8377340ecb596c22c [file] [log] [blame]
// Copyright (c) 2003-2004 Brian Wellington (bwelling@xbill.org)
package org.xbill.DNS;
/**
* An exception thrown when an invalid type code is specified.
*
* @author Brian Wellington
*/
public class InvalidTypeException extends IllegalArgumentException {
public
InvalidTypeException(int type) {
super("Invalid DNS type: " + type);
}
}