?? errormessage.java
字號:
package com.toa.abs.util;
public class ErrorMessage {
private int code;//錯誤代碼
private String message;//錯誤提示信息
private String cause;//錯誤原因
public ErrorMessage(int code,String message,String cause){
this.code=code;
this.message=message;
this.cause=cause;
}
public String getCause() {
return cause;
}
public int getCode() {
return code;
}
public String getMessage() {
return message;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -