zuoxiao
2024-03-28 7b80692e038ec9b1f06fbfdc61498c6ff3f97d71
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.easysocket.exception;
 
/**
 * Author:Alex
 * Date:2019/6/4
 * Note:请求取消异常
 */
public class RequestCancelException extends Exception{
 
    public RequestCancelException(String s){
        super(s);
    }
}