|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
javax.mail.MessagingException
javax.mail.SendFailedException
public class SendFailedException
This exception is thrown when the message cannot be sent.
The exception includes those addresses to which the message could not be sent as well as the valid addresses to which the message was sent and valid addresses to which the message was not sent.
Transport.send(javax.mail.Message),
Transport.sendMessage(javax.mail.Message, javax.mail.Address[]),
TransportEvent,
序列化表格| 字段摘要 | |
|---|---|
protected Address[] |
invalid
|
protected Address[] |
validSent
|
protected Address[] |
validUnsent
|
| 构造方法摘要 | |
|---|---|
SendFailedException()
Constructs a SendFailedException with no detail message. |
|
SendFailedException(String s)
Constructs a SendFailedException with the specified detail message. |
|
SendFailedException(String s,
Exception e)
Constructs a SendFailedException with the specified Exception and detail message. |
|
SendFailedException(String msg,
Exception ex,
Address[] validSent,
Address[] validUnsent,
Address[] invalid)
Constructs a SendFailedException with the specified string and the specified address objects. |
|
| 方法摘要 | |
|---|---|
Address[] |
getInvalidAddresses()
Return the addresses to which this message could not be sent. |
Address[] |
getValidSentAddresses()
Return the addresses to which this message was sent succesfully. |
Address[] |
getValidUnsentAddresses()
Return the addresses that are valid but to which this message was not sent. |
| 从类 javax.mail.MessagingException 继承的方法 |
|---|
getCause, getNextException, setNextException, toString |
| 从类 java.lang.Throwable 继承的方法 |
|---|
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace |
| 从类 java.lang.Object 继承的方法 |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| 字段详细信息 |
|---|
protected transient Address[] invalid
protected transient Address[] validSent
protected transient Address[] validUnsent
| 构造方法详细信息 |
|---|
public SendFailedException()
public SendFailedException(String s)
s - the detail message
public SendFailedException(String s,
Exception e)
s - the detail messagee - the embedded exceptionMessagingException.getNextException(),
MessagingException.setNextException(java.lang.Exception)
public SendFailedException(String msg,
Exception ex,
Address[] validSent,
Address[] validUnsent,
Address[] invalid)
msg - the detail messageex - the embedded exceptionvalidSent - valid addresses to which message was sentvalidUnsent - valid addresses to which message was not sentinvalid - the invalid addressesMessagingException.getNextException(),
MessagingException.setNextException(java.lang.Exception)| 方法详细信息 |
|---|
public Address[] getValidSentAddresses()
public Address[] getValidUnsentAddresses()
public Address[] getInvalidAddresses()
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||