club.chlab.mybatis.exception.NoPrimaryKeyException Maven / Gradle / Ivy
package club.chlab.mybatis.exception;
/**
* Non primary key exception
* @author jch
*
*/
public class NoPrimaryKeyException extends Exception{
private static String basemsg = "The primary key is not found in the entity class.";
/**
*
*/
private static final long serialVersionUID = -4573674661612186313L;
public NoPrimaryKeyException(){
super(basemsg);
}
public NoPrimaryKeyException(String message){
super(basemsg+message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy