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

org.fingertip.simpledao.exception.DaoException Maven / Gradle / Ivy

The newest version!
package org.fingertip.simpledao.exception;

public class DaoException extends RuntimeException{

	/**
	 * serialVersionUID 序列化ID
	 */
	private static final long serialVersionUID = -365051473470335230L;
	
	public DaoException(){
		super();
	}
	
	public DaoException(String msg){
		super(msg);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy