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

com.revinate.sendgrid.exception.SendGridException Maven / Gradle / Ivy

The newest version!
package com.revinate.sendgrid.exception;

import com.revinate.sendgrid.model.ApiError;

import java.util.Collections;
import java.util.List;

public class SendGridException extends Exception {

    private List errors = Collections.emptyList();
    private Integer statusCode;

    public SendGridException(String message) {
        super(message);
    }

    public SendGridException(String message, Throwable e) {
        super(message, e);
    }

    public SendGridException(String message, List errors, Integer statusCode) {
        super(message);
        this.errors = errors;
        this.statusCode = statusCode;
    }

    public List getErrors() {
        return errors;
    }

    public Integer getStatusCode() {
        return statusCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy