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

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

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

/**
 * Created by vladi
 * Date: 9/13/2017
 * Time: 12:23 AM
 * By Taboola
 */
public abstract class RestAPIException extends RuntimeException {

    public RestAPIException(Throwable cause, String message, Object ... params) {
        super(String.format(message, params), cause);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy