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