xiangpei
2025-05-29 817c7de04cb6b74164a42ed0e6050ae5b91b0ef1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.lili.common.exception;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 如需异常重试,则抛出此异常
 *
 * @author paulG
 * @since 2022/4/26
 **/
@EqualsAndHashCode(callSuper = true)
@Data
public class RetryException extends RuntimeException {
 
    private static final long serialVersionUID = 7886918292771470846L;
 
    public RetryException(String message) {
        super(message);
    }
}