FileDocCategorySizeDatePackage
MessageRemovedIOException.javaAPI DocJavaMail 1.4.32807Tue Nov 17 10:38:12 GMT 2009com.sun.mail.util

MessageRemovedIOException

public class MessageRemovedIOException extends IOException
A variant of MessageRemovedException that can be thrown from methods that only throw IOException. The getContent method will catch this exception and translate it back to MessageRemovedException.
see
javax.mail.Message#isExpunged()
see
javax.mail.Message#getMessageNumber()
author
Bill Shannon

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public MessageRemovedIOException()
Constructs a MessageRemovedIOException with no detail message.


                
      
	super();
    
public MessageRemovedIOException(String s)
Constructs a MessageRemovedIOException with the specified detail message.

param
s the detail message

	super(s);
    
Methods Summary