com.cribbstechnologies.clients.mandrill.exception.RequestFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mandrillClient Show documentation
Show all versions of mandrillClient Show documentation
A Java wrapper for Mandrill
package com.cribbstechnologies.clients.mandrill.exception;
public class RequestFailedException extends Throwable {
private static final long serialVersionUID = 1L;
public RequestFailedException(String message, Throwable t) {
super(message, t);
}
public RequestFailedException(String message) {
super(message);
}
}