Constructors Summary |
---|
public FolderNotFoundException()Constructs a MessagingException with no detail message.
super();
|
public FolderNotFoundException(Folder folder)Constructs a MessagingException with the specified folder.
super();
this.folder = folder;
|
public FolderNotFoundException(Folder folder, String s)Constructs a MessagingException with the specified folder and
the specified detail message.
super(s);
this.folder = folder;
|
public FolderNotFoundException(String s, Folder folder)Constructs a MessagingException with the specified detail message
and the specified folder.
super(s);
this.folder = folder;
|