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);
|
}
|
}
|