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

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

There is a newer version: 1.6.8
Show newest version
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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy