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

fr.sii.ogham.email.sendgrid.sender.exception.SendGridException Maven / Gradle / Ivy

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy