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

cn.stylefeng.roses.email.spring.enums.SpringMailSendResultEnum Maven / Gradle / Ivy

package cn.stylefeng.roses.email.spring.enums;

import lombok.Getter;

/**
 * 邮件发送失败的异常枚举
 *
 * @author stylefeng
 * @Date 2018年07月08日18:39:47
 */
@Getter
public enum SpringMailSendResultEnum {

    MAIL_SEND_ERROR(500, "邮件发送失败");

    SpringMailSendResultEnum(Integer code, String message) {
        this.code = code;
        this.message = message;
    }

    private final Integer code;

    private final String message;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy