fr.sii.ogham.email.sendgrid.sender.exception.SendGridException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ogham-email-sendgrid-common Show documentation
Show all versions of ogham-email-sendgrid-common Show documentation
Common classes for all SendGrid implementation for Ogham
The newest version!
package fr.sii.ogham.email.sendgrid.sender.exception;
import static fr.sii.ogham.core.CoreConstants.SERIAL_VERSION_UID;
/**
* Exception that wraps exceptions that are thrown by SendGrid.
*
* @author Aurélien Baudet
*
*/
public class SendGridException extends Exception {
private static final long serialVersionUID = SERIAL_VERSION_UID;
public SendGridException(String message, Throwable cause) {
super(message, cause);
}
public SendGridException(String message) {
super(message);
}
public SendGridException(Throwable cause) {
super(cause);
}
}