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

com.jd.httpservice.HttpServiceException Maven / Gradle / Ivy

There is a newer version: 2.1.4.RELEASE
Show newest version
package com.jd.httpservice;

/**
 * HTTP 服务异常;
 * 
 * 通过 HTTP Service Agent 调用产生的异常都将包装为 HttpServiceException 抛出;
 * 
 * 注:操作方法通过 throws 关键字声明的异常除外,这些异常将原样抛出;
 * 
 * @author haiq
 *
 */
public class HttpServiceException extends RuntimeException{

	private static final long serialVersionUID = 7316207586307377240L;

	public HttpServiceException() {
	}
	
	public HttpServiceException(String message) {
		super(message);
	}
	
	public HttpServiceException(String message, Throwable cause) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy