exceptionmessage.java

来自「这个也是关于图书管理系统的代码」· Java 代码 · 共 19 行

JAVA
19
字号
package com.xmspk.ebp.database;

/**
 * Created by Phyomh.Sam.
 * User: Phyomh
 * Date: Mar 24, 2003
 * Time: 8:23:58 PM
 */
public class ExceptionMessage {
    public static final Exception dataBaseBusy =new Exception("Error Message:DataBase is busy Working,Can not connect the DataBase");
    public static final Exception notExistError =new Exception("Error Message: Record not exit!");
    public static final Exception Error =new Exception("Error Message: Some Interal error occured");
    public static final Exception RecordNotExist = new Exception("Error Message: Record do not exit!");
    public static final Exception RecordInsertError = new Exception("Error Message: Error occured in insert record!");
    public static final Exception RecordUpdateError = new Exception("Error Message: Error occured in update record!1");
    public static final Exception NotEnoughStorage = new Exception("Error Message: Not Enough Storage to get!");
    public static final Exception RecordDelError   = new Exception("Error Message: Eror occurs in delete records!");
}

⌨️ 快捷键说明

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