cy
2022-06-27 150ced737ad5d16d476df143c7e4238fc6b8b998
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);
    }
    
}