1 7 8 9 package javax.naming; 10 11 import javax.naming.Name ; 12 13 29 public class SizeLimitExceededException extends LimitExceededException { 30 34 public SizeLimitExceededException() { 35 super(); 36 } 37 38 44 public SizeLimitExceededException(String explanation) { 45 super(explanation); 46 } 47 48 51 private static final long serialVersionUID = 7129289564879168579L; 52 } 53 | Popular Tags |