KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > suberic > pooka > cache > MessageRemovedException


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 JavaDoc errorMessage) {
12     super(errorMessage);
13   }
14 }
15
Popular Tags