
com.mailjet.client.errors.MailjetException Maven / Gradle / Ivy
/*
* 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