FolderClosedIOExceptionpublic class FolderClosedIOException extends IOException A variant of FolderClosedException that can be thrown from methods
that only throw IOException. The getContent method will catch this
exception and translate it back to FolderClosedException. |
Fields Summary |
---|
private transient Folder | folder | private static final long | serialVersionUID |
Constructors Summary |
---|
public FolderClosedIOException(Folder folder)Constructor
this(folder, null);
| public FolderClosedIOException(Folder folder, String message)Constructor
super(message);
this.folder = folder;
|
Methods Summary |
---|
public javax.mail.Folder | getFolder()Returns the dead Folder object
return folder;
|
|