📄 accountfreezedexception.java
字号:
/*
* Created on 2005-8-2
*
*/
package banksystem.exception;
/**
* @author 曲本盛
*
* TODO Struts 项目实践
*/
public class AccountFreezedException extends Exception {
protected String key = null;
public AccountFreezedException() {}
/**
* @param key
*/
public AccountFreezedException(String key) {
super(key);
this.key = key;
}
/**
* @return Returns the key.
*/
public String getKey() {
return key;
}
/**
* @param key The key to set.
*/
public void setKey(String key) {
this.key = key;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -