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

com.pugwoo.dbhelper.exception.RowMapperFailException Maven / Gradle / Ivy

package com.pugwoo.dbhelper.exception;

/**
 * 数据行转换成Java对象时失败异常
 */
public class RowMapperFailException extends RuntimeException {

	private static final long serialVersionUID = 1L;
	
	public RowMapperFailException() {
	}

	public RowMapperFailException(String errmsg) {
		super(errmsg);
	}
	
	public RowMapperFailException(Throwable e) {
		super(e);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy