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

com.dao.support.database.ObjectNotFoundException Maven / Gradle / Ivy

The newest version!
package com.dao.support.database;

/**
 * 对像未找到异常
* 多用于根据某id查询一条记录,但此记录不存在 * @author jianghongyan *2017-4-9上午09:09:20 */ public class ObjectNotFoundException extends DBRuntimeException { public ObjectNotFoundException(String message) { super(message); } public ObjectNotFoundException(Exception e, String sql) { super(e, sql); } /** * */ private static final long serialVersionUID = -3403302876974180460L; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy