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

com.nu.art.http.HttpException Maven / Gradle / Ivy

There is a newer version: 1.2.59
Show newest version
package com.nu.art.http;

import java.io.IOException;

/**
 * Created by TacB0sS on 02-Mar 2017.
 */
public class HttpException
		extends IOException {

	private final HttpResponse response;

	private Object error;

	public HttpException(HttpResponse response, Object error) {
		this.response = response;
		this.error = error;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy