MessageRemovedExceptionpublic class MessageRemovedException extends MessagingException The exception thrown when an invalid method is invoked on an expunged
Message. The only valid methods on an expunged Message are
isExpunged() and getMessageNumber() . |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public MessageRemovedException()Constructs a MessageRemovedException with no detail message.
super();
| public MessageRemovedException(String s)Constructs a MessageRemovedException with the specified detail message.
super(s);
|
|