⇒ Index (Frames) |  ⇒ Index (No Frames) |  ⇒ Package |  ⇒ Package Tree |  ⇒ Full Tree 
javax.mail

Class StoreClosedException

Exception
|
+--javax.mail.MessagingException
   |
   +--javax.mail.StoreClosedException


public class 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.

Author:

Constructor Summary

StoreClosedException(Store store)

StoreClosedException(Store store, String message)

Method Summary

Store

getStore()

Returns the dead Store object.

Constructor Details

StoreClosedException

public StoreClosedException(Store store)

Parameters:
store

StoreClosedException

public StoreClosedException(Store store, String message)

Parameters:
store
message

Method Details

getStore

public Store getStore()

Returns the dead Store object.