1 package net.suberic.pooka.cache; 2 3 import javax.mail.*; 4 5 /** 6 * Shows that a message has been removed from the cache and, if the 7 * server is connected, is also not available on the server. 8 */ 9 public class MessageRemovedException extends MessagingException { 10 11 public MessageRemovedException(String errorMessage) { 12 super(errorMessage); 13 } 14 } 15