wt.mail
Class MessagingException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bywt.util.WTException
              extended bywt.mail.MessagingException
All Implemented Interfaces:
LocalizableMessage, Message, Serializable

public class MessagingException
extends WTException

MessagingException is the base class for messaging exceptions. Methods for retrieving information from the exception are inherited from WTException

See Also:
WTException, -- javax.mail.*, Serialized Form

Field Summary
private static String versionID
          Deprecated.  
 
Fields inherited from class wt.util.WTException
GETMESSAGE_LINE_SEPARATOR, LINE_SEPARATOR, SPACE_SEPARATOR, TOSTRING_LINE_SEPARATOR
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
MessagingException()
          Deprecated. Constructs a messaging exception with no specified detailed message or embedded throwable object.
MessagingException(Exception t)
          Deprecated. Constructs a messaging exception with an embedded Exception object.
MessagingException(Exception t, String s)
          Deprecated. Constructs a messaging exception with an embedded Exception object and non-localizable detailed message.
MessagingException(String s)
          Deprecated. Constructs a messaging exception with a non-localizable detailed message.
MessagingException(String rb, String key, Object[] params)
          Deprecated.  
MessagingException(Throwable t, String rb, String key, Object[] params)
          Deprecated. Constructs a messaging exception with an embedded Throwable object and a localizable detailed message.
 
Methods inherited from class wt.util.WTException
getAdditionalMessageArray, getAdditionalMessages, getAdditionalMessages, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getNestedExceptionString, getNestedExceptionString, getNestedThrowable, getStandardMessage, getStandardMessage, printStackTrace, printStackTrace, printStackTrace, setLocalizedMessage, toString, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

versionID

private static final String versionID
Deprecated. 
See Also:
Constant Field Values
Constructor Detail

MessagingException

public MessagingException()
Deprecated. 
Constructs a messaging exception with no specified detailed message or embedded throwable object.


MessagingException

public MessagingException(String s)
Deprecated. 
Constructs a messaging exception with a non-localizable detailed message.

Parameters:
s - the detailed message

MessagingException

public MessagingException(Exception t,
                          String s)
Deprecated. 
Constructs a messaging exception with an embedded Exception object and non-localizable detailed message.

Parameters:
t - the embedded Exception. It may be null.
s - the detailed message. It may be null.

MessagingException

public MessagingException(Exception t)
Deprecated. 
Constructs a messaging exception with an embedded Exception object.

Parameters:
t - the embedded Exception. It may be null.

MessagingException

public MessagingException(Throwable t,
                          String rb,
                          String key,
                          Object[] params)
Deprecated. 
Constructs a messaging exception with an embedded Throwable object and a localizable detailed message.

Parameters:
t - the embedded Throwable. It may be null.
rb - the name of the base resource bundle subclass containing the localizable message.
key - the key associated with the localizable message
params - an optional set of objects to be formatted into the localizable message text.
See Also:
ResourceBundle, MessageFormat

MessagingException

public MessagingException(String rb,
                          String key,
                          Object[] params)
Deprecated.