All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.tenmg.dsl.exception.NumberParseException Maven / Gradle / Ivy

Go to download

动态脚本语言(DSL,Dynamic Script Language)解析框架。可广泛用于动态 SQL(即 DSQL)等场景的解析,DSQL 也是目前 DSL 最成功的应用领域,具体包括 Flink SQL(如 Clink)、Spark SQL(如 sparktool)和 JDBC(如 sqltool)。

The newest version!
package cn.tenmg.dsl.exception;

/**
 * 数字解析异常
 * 
 * @author June [email protected]
 * 
 * @since 1.3.0
 */
public class NumberParseException extends RuntimeException {

	/**
	 * 
	 */
	private static final long serialVersionUID = -1549629736417575932L;

	public NumberParseException(String massage) {
		super(massage);
	}

	public NumberParseException(String massage, Throwable cause) {
		super(massage, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy