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