com.pugwoo.dbhelper.exception.ParameterSizeNotMatchedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nimble-orm Show documentation
Show all versions of nimble-orm Show documentation
nimble-orm an ORM based on Spring jdbcTemplate.
package com.pugwoo.dbhelper.exception;
/**
* sql参数个数不一致异常
*/
public class ParameterSizeNotMatchedException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ParameterSizeNotMatchedException() {
}
public ParameterSizeNotMatchedException(String errMsg) {
super(errMsg);
}
public ParameterSizeNotMatchedException(Throwable e) {
super(e);
}
}