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

com.taboola.backstage.exceptions.BackstageAPIRequestException Maven / Gradle / Ivy

package com.taboola.backstage.exceptions;

import com.taboola.backstage.model.APIError;

/**
 * Created by vladi
 * Date: 10/30/2017
 * Time: 11:12 PM
 * By Taboola
 */
public class BackstageAPIRequestException extends BackstageAPIException {

    public BackstageAPIRequestException(String message, Object ... params) {
        super(message, params);
    }

    public BackstageAPIRequestException(int responseCode, APIError error) {
        super(error, "Failed to perform API call with response code [%d]", responseCode);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy