forked from kidgrow-microservices-platform

zhaoxiaohao
2020-11-17 b7265cdd6f3e1fbb0d428c27e5b5e29e34d56953
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.kidgrow.common.exception;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 *
 * @Description: 幂等性异常类<br>
 * @Project: <br>
 * @CreateDate: Created in 2020/2/3 16:03 <br>
 * @Author: <a href="4345453@kidgrow.com">liuke</a>
 */
public class IdempotencyException extends  RuntimeException {
    private static final long serialVersionUID = 5296585468220115845L;
 
    public IdempotencyException(String message) {
        super(message);
    }
}