01: // Copyright (c) 2002-2004 Brian Wellington (bwelling@xbill.org)
02:
03: package org.xbill.DNS;
04:
05: /**
06: * An exception thrown when a name is longer than the maximum length of a DNS
07: * name.
08: *
09: * @author Brian Wellington
10: */
11:
12: public class NameTooLongException extends WireParseException {
13:
14: public NameTooLongException() {
15: super ();
16: }
17:
18: public NameTooLongException(String s) {
19: super(s);
20: }
21:
22: }
|