1 7 8 package javax.naming.directory; 9 10 import javax.naming.NamingException ; 11 12 25 26 public class InvalidAttributeIdentifierException extends NamingException { 27 33 public InvalidAttributeIdentifierException(String explanation) { 34 super(explanation); 35 } 36 37 41 public InvalidAttributeIdentifierException() { 42 super(); 43 } 44 45 48 private static final long serialVersionUID = -9036920266322999923L; 49 } 50 | Popular Tags |