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

com.chargebee.exceptions.BatchAPIException Maven / Gradle / Ivy

There is a newer version: 3.26.0
Show newest version
package com.chargebee.exceptions;

import com.chargebee.APIException;
import org.json.JSONObject;

import static com.chargebee.BatchConstants.CORRELATION_ID;

public class BatchAPIException extends APIException {
    String correlationId;

    public BatchAPIException(int httpStatusCode, String message, JSONObject jsonObj) {
        super(httpStatusCode, message, jsonObj);
        this.correlationId = jsonObj.optString(CORRELATION_ID);
    }

    public String getCorrelationId() {
        return correlationId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy