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

com.taboola.rest.api.exceptions.RestAPIRequestException Maven / Gradle / Ivy

The newest version!
package com.taboola.rest.api.exceptions;

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy