All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nablarch.common.mail.SendMailRetryableException Maven / Gradle / Ivy

The newest version!
package nablarch.common.mail;

import nablarch.core.util.annotation.Published;
import nablarch.fw.handler.retry.RetryableException;

/**
 * メール送信時にリトライ可能である状態を示す例外
 *
 * @author T.Shimoda
 */
@Published(tag = "architect")
public class SendMailRetryableException extends RetryableException {

    /**
     * コンストラクタ。
     *
     * @param message 例外メッセージ
     * @param cause 起因例外
     */
    public SendMailRetryableException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy