com.google.sitebricks.mail.MailHandlingException Maven / Gradle / Ivy
The newest version!
package com.google.sitebricks.mail;
import java.util.List;
/**
* @author [email protected] (Dhanji R. Prasanna)
*/
public class MailHandlingException extends RuntimeException {
private final List context;
private final String message;
public MailHandlingException(List context, String message, Exception cause) {
super(cause);
this.context = context;
this.message = message;
}
public List getContext() {
return context;
}
public String getContextMessage() {
return message;
}
}