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

com.mashape.unirest.http.exceptions.UnirestException Maven / Gradle / Ivy

The newest version!
package com.mashape.unirest.http.exceptions;

public class UnirestException extends Exception {

	private static final long serialVersionUID = -3714840499934575734L;

	public UnirestException(Exception e) {
		super(e);
	}

	public UnirestException(String msg) {
		super(msg);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy