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

cn.tenmg.sqltool.exception.NoColumnForUpdateException Maven / Gradle / Ivy

Go to download

一个提供动态结构化查询语言(DSQL)解析和执行的通用ORM框架(连接池在分布式环境适用),支持包括MySQL、PostgreSQL、Oracle、SQLServer在内的多种数据库。

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

/**
 * 没有需要更新的列异常。当实体仅含主键列不含普通列时会引发此异常
 * 
 * @author June [email protected]
 *
 * @since 1.1.1
 */
public class NoColumnForUpdateException extends RuntimeException {

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

	public NoColumnForUpdateException() {
		super();
	}

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

	public NoColumnForUpdateException(Throwable cause) {
		super(cause);
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy