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

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

// Copyright (c) 2003-2004 Brian Wellington ([email protected])

package org.xbill.DNS;

/**
 * An exception thrown when an invalid TTL is specified.
 *
 * @author Brian Wellington
 */

public class InvalidTTLException extends IllegalArgumentException {

public
InvalidTTLException(long ttl) {
	super("Invalid DNS TTL: " + ttl);
}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy