Home » apache-tomcat-6.0.26-src » javax » mail » [javadoc | source]
javax.mail
public class: MessagingException [javadoc | source]
java.lang.Object
   java.lang.Throwable
      java.lang.Exception
         javax.mail.MessagingException

All Implemented Interfaces:
    Serializable

Direct Known Subclasses:
    StoreClosedException, ParseException, MessageRemovedException, NoSuchProviderException, SendFailedException, IllegalWriteException, AuthenticationFailedException, ReadOnlyFolderException, FolderClosedException, AddressException, MethodNotSupportedException, FolderNotFoundException, SearchException

The base class for all exceptions thrown by the Messaging classes
Fields inherited from java.lang.Exception:
serialVersionUID
Constructor:
 public MessagingException() 
 public MessagingException(String s) 
    Constructs a MessagingException with the specified detail message.
    Parameters:
    s - the detail message
 public MessagingException(String s,
    Exception e) 
    Constructs a MessagingException with the specified Exception and detail message. The specified exception is chained to this exception.
Method from javax.mail.MessagingException Summary:
getCause,   getNextException,   setNextException,   toString
Methods from java.lang.Throwable:
fillInStackTrace,   getCause,   getLocalizedMessage,   getMessage,   getStackTrace,   initCause,   printStackTrace,   printStackTrace,   printStackTrace,   setStackTrace,   toString
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from javax.mail.MessagingException Detail:
 public synchronized Throwable getCause() 
    Overrides the getCause method of Throwable to return the next exception in the chain of nested exceptions.
 public synchronized Exception getNextException() 
    Get the next exception chained to this one. If the next exception is a MessagingException, the chain may extend further.
 public synchronized boolean setNextException(Exception ex) 
    Add an exception to the end of the chain. If the end is not a MessagingException, this exception cannot be added to the end.
 public synchronized String toString() 
    Override toString method to provide information on nested exceptions.