blob: 20ff08a23846a0227464d0fcf30d4ed25ad4ccdd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.geronimo.javamail.transport.smtp;
import javax.mail.Address;
import javax.mail.SendFailedException;
public class SMTPSendFailedException extends SendFailedException {
// the failing command
protected String cmd;
// the error code for the failure
protected int rc;
/**
* Constructor for an SMTPSendFaileException.
*
* @param cmd
* The failing command string.
* @param rc
* The error code for the failing command.
* @param err
* An error message for the exception.
* @param ex
* Any associated nested exception.
* @param vs
* An array of valid, sent addresses.
* @param vus
* An array of addresses that were valid, but were unsent.
* @param inv
* An array of addresses deemed invalid.
*/
SMTPSendFailedException(java.lang.String cmd, int rc, java.lang.String err, java.lang.Exception ex, Address[] vs,
Address[] vus, Address[] inv) {
super(err, ex, vs, vus, inv);
this.cmd = cmd;
this.rc = rc;
}
/**
* Get the failing command string for the exception.
*
* @return The string value of the failing command.
*/
public String getCommand() {
return cmd;
}
/**
* The failing command return code.
*
* @return The failure return code.
*/
public int getReturnCode() {
return rc;
}
}