01: // Copyright (c) 2003-2004 Brian Wellington (bwelling@xbill.org)
02:
03: package org.xbill.DNS;
04:
05: /**
06: * An exception thrown when an invalid TTL is specified.
07: *
08: * @author Brian Wellington
09: */
10:
11: public class InvalidTTLException extends IllegalArgumentException {
12:
13: public InvalidTTLException(long ttl) {
14: super ("Invalid DNS TTL: " + ttl);
15: }
16:
17: }
|