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

com.mailjet.client.errors.MailjetException Maven / Gradle / Ivy

There is a newer version: 5.2.6
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.mailjet.client.errors;

/**
 * Base exception class for the all exceptions thrown by MailJet client
 * @author guillaume
 */
public class MailjetException extends Exception {
    
	private static final long serialVersionUID = 1L;

	public MailjetException(String message) {
        super(message);
    }
	public MailjetException(String message, Exception cause) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy