cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
    }
    
}