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