blob: 95776fe9e4fcaad0bd98b040b6071fc68bf5e91e [file] [log] [blame]
Shuyi Chend7955ce2013-05-22 14:51:55 -07001// Copyright (c) 2003-2004 Brian Wellington (bwelling@xbill.org)
2
3package org.xbill.DNS;
4
5/**
6 * An exception thrown when an invalid TTL is specified.
7 *
8 * @author Brian Wellington
9 */
10
11public class InvalidTTLException extends IllegalArgumentException {
12
13public
14InvalidTTLException(long ttl) {
15 super("Invalid DNS TTL: " + ttl);
16}
17
18}