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

club.chlab.mybatis.exception.JoinFieldErrorException Maven / Gradle / Ivy

The newest version!
package club.chlab.mybatis.exception;

/**
 * Join field error exception
 * @author jch
 *
 */
public class JoinFieldErrorException extends Exception {
	private static String basemsg = "Error field in this jion.";
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public JoinFieldErrorException(){
		super(basemsg);
	}
	
	public JoinFieldErrorException(String message){
		super(basemsg+message);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy