org.voovan.db.exception.UpdateCountException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voovan-framework Show documentation
Show all versions of voovan-framework Show documentation
Voovan is a java framwork and it not depends on any third-party framework.
package org.voovan.db.exception;
import java.sql.SQLException;
/**
* 更新异常
*
* @author: helyho
* DBase Framework.
* WebSite: https://github.com/helyho/DBase
* Licence: Apache v2 License
*/
public class UpdateCountException extends SQLException {
private static final long serialVersionUID = 1L;
public UpdateCountException(String message, Exception e){
super(message);
this.setStackTrace(e.getStackTrace());
}
public UpdateCountException(String message){
super(message);
}
public UpdateCountException(Exception e){
this.setStackTrace(e.getStackTrace());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy