package jnpf.exception; /** * 查询异常 * * @author yanwenfu * @create 2021-10-19 */ public class QueryException extends Exception { public QueryException() { } public QueryException(String message) { super(message); } }