com.pongsky.kit.exception.ExistException 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 ExistException extends RuntimeException {
private static final long serialVersionUID = 5804665095493997255L;
public ExistException(String message) {
super(message);
}
}