com.pongsky.kit.exception.FrequencyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of config-core Show documentation
Show all versions of config-core Show documentation
Java 增强套件 之 config-core 模块
package com.pongsky.kit.exception;
/**
* 频率异常
*
* @author pengsenhao
*/
public class FrequencyException extends RuntimeException {
private static final long serialVersionUID = -954678963872186012L;
public FrequencyException(String message) {
super(message);
}
}