package cn.ksource.core.util; /** * Http远程调用异常 * @version V1.0.0 * @author 杨凯 * @date Jan 25, 2014 11:10:49 AM */ public class HttpRemoteException extends RuntimeException { public HttpRemoteException(String msg,Throwable throwable){ super(msg, throwable); } public HttpRemoteException(String msg){ super(msg); } }