cy
2022-06-28 2ba5c891b24d4d0cd6ce7ef833592e4f576ee5e8
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);
    }
    
}