com.github.tomato.exception.RepeatOptException Maven / Gradle / Ivy
package com.github.tomato.exception;
/**
* 当重复请求会默认抛出这个异常
*
* @author liuxin
* 2020-01-06 22:57
*/
public class RepeatOptException extends RuntimeException {
public RepeatOptException() {
super();
}
public RepeatOptException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy