1 21 22 27 28 package javax.mail; 29 30 44 45 public class StoreClosedException extends MessagingException { 46 transient private Store store; 47 48 private static final long serialVersionUID = -3145392336120082655L; 49 50 54 public StoreClosedException(Store store) { 55 this(store, null); 56 } 57 58 63 public StoreClosedException(Store store, String message) { 64 super(message); 65 this.store = store; 66 } 67 68 71 public Store getStore() { 72 return store; 73 } 74 } 75 | Popular Tags |