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

com.labstack.EmailException Maven / Gradle / Ivy

The newest version!
package com.labstack;

/**
 * Defines the email exception.
 */
public class EmailException extends RuntimeException {
    private int code;

    public EmailException(int code, String message) {
        super(message);
        this.code = code;
    }

    public int getCode() {
        return code;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy