org.xbill.DNS.InvalidTTLException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dnsjava-osgi Show documentation
Show all versions of dnsjava-osgi Show documentation
Repackaging dnsjava 2.0.6 for OSGI and Maven environments.
The newest version!
// 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);
}
}