public SMTPAddressSucceededException(InternetAddress addr, String cmd, int rc, String err)Constructs an SMTPAddressSucceededException with the specified
address, return code, and error string.
super(err);
this.addr = addr;
this.cmd = cmd;
this.rc = rc;
|