cy
2022-06-27 161509b9f823511cf33041caaf25ce726999e39b
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);
    }
    
}