1 // Copyright (c) 2002-2004 Brian Wellington (bwelling (at) xbill.org) 2 3 package org.xbill.DNS; 4 5 /** 6 * An exception thrown when a name is longer than the maximum length of a DNS 7 * name. 8 * 9 * @author Brian Wellington 10 */ 11 12 public class NameTooLongException extends WireParseException { 13 14 public 15 NameTooLongException() { 16 super(); 17 } 18 19 public 20 NameTooLongException(String s) { 21 super(s); 22 } 23 24 } 25