⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dataintegralityexception.java

📁 菲律宾的一个大学的图书管理系统 spring+hibernate+velocity
💻 JAVA
字号:
/*
 * 创建日期 2005-4-12
 */
package biz.bluesky.pts.exception;


public class DataIntegralityException extends Exception {
    
    private String requestTable;
    private String requestField;
    
    public DataIntegralityException() {
        super();
    }
    public DataIntegralityException(String msg) {
        super(msg);
    }

    public String getRequestField() {
        return requestField;
    }
    public void setRequestField(String requestField) {
        this.requestField = requestField;
    }
    
    public String getRequestTable() {
        return requestTable;
    }
    public void setRequestTable(String requestTable) {
        this.requestTable = requestTable;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -