1 7 8 9 package javax.naming; 10 11 import javax.naming.Name ; 12 13 33 34 public class LimitExceededException extends NamingException { 35 39 public LimitExceededException() { 40 super(); 41 } 42 43 49 public LimitExceededException(String explanation) { 50 super(explanation); 51 } 52 53 56 private static final long serialVersionUID = -776898738660207856L; 57 } 58 | Popular Tags |