This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.mail
exception StoreClosedException

javax.mail.MessagingException extended by javax.mail.StoreClosedException

public exception StoreClosedException
extends MessagingException

This exception is thrown when a method is invoked on a Messaging object and the Store that owns that object has died due to some reason. This exception should be treated as a fatal error; in particular any messaging object belonging to that Store must be considered invalid.

The connect method may be invoked on the dead Store object to revive it.

The getMessage() method returns more detailed information about the error that caused this exception.


Constructor Summary

          Constructor

          Constructor
 
Method Summary
 Store

          Returns the dead Store object
 
Methods inherited from class javax.mail.MessagingException
getCause, getNextException, setNextException, toString
 

Constructor Detail

StoreClosedException

public StoreClosedException(Store store)
Constructor

Parameters:
store - The dead Store object

StoreClosedException

public StoreClosedException(Store store,
                            String message)
Constructor

Parameters:
store - The dead Store object
message - The detailed error message
Method Detail

getStore

public Store getStore()
Returns the dead Store object



This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention. The official Sun™ documentation can be found here at http://java.sun.com/products/javamail/javadocs/index.html.