Constructors Summary |
---|
public SendFailedException()Constructs a SendFailedException with no detail message.
super();
|
public SendFailedException(String s)Constructs a SendFailedException with the specified detail message.
super(s);
|
public SendFailedException(String s, Exception e)Constructs a SendFailedException with the specified
Exception and detail message. The specified exception is chained
to this exception.
super(s, e);
|
public SendFailedException(String msg, Exception ex, Address[] validSent, Address[] validUnsent, Address[] invalid)Constructs a SendFailedException with the specified string
and the specified address objects.
super(msg, ex);
this.validSent = validSent;
this.validUnsent = validUnsent;
this.invalid = invalid;
|