com.pugwoo.dbhelper.exception.MustProvideConstructorException 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;
/**
* deleteByKey的class必须有默认构造方法
*/
public class MustProvideConstructorException extends RuntimeException {
private static final long serialVersionUID = 1L;
public MustProvideConstructorException() {
}
public MustProvideConstructorException(String errMsg) {
super(errMsg);
}
public MustProvideConstructorException(Throwable e) {
super(e);
}
}