com.github.panxiaole.polestar.common.exception.IdempotencyException Maven / Gradle / Ivy
The newest version!
package com.github.panxiaole.polestar.common.exception;
/**
* 幂等性异常
*
* @author zlt
*/
public class IdempotencyException extends RuntimeException {
private static final long serialVersionUID = 6610083281801529147L;
public IdempotencyException(String message) {
super(message);
}
}