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

org.voovan.db.exception.UpdateFieldException Maven / Gradle / Ivy

There is a newer version: 4.3.8
Show newest version
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 UpdateFieldException extends RuntimeException {

    private static final long	serialVersionUID	= 1L;

    public UpdateFieldException(String message, Exception e){
        super(message);
        this.setStackTrace(e.getStackTrace());
    }

    public UpdateFieldException(String message){
        super(message);
    }

    public UpdateFieldException(Exception e){
        this.setStackTrace(e.getStackTrace());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy