com.mailgun.exception.MailGunException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mailgun-java Show documentation
Show all versions of mailgun-java Show documentation
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);
}
}