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

com.mailgun.exception.MailGunException Maven / Gradle / Ivy

Go to download

The Mailgun SDK for Java enables Java developers to work with Mailgun API efficiently.

The newest version!
package com.mailgun.exception;

public class MailGunException extends RuntimeException {

    public MailGunException() {
        super();
    }

    public MailGunException(String message) {
        super(message);
    }

    public MailGunException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy