FileDocCategorySizeDatePackage
MessageRemovedException.javaAPI DocJavaMail 1.4.32760Tue Nov 17 10:38:12 GMT 2009javax.mail

MessageRemovedException

public 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().
see
javax.mail.Message#isExpunged()
see
javax.mail.Message#getMessageNumber()
author
John Mani

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.

param
s the detail message

	super(s);
    
Methods Summary