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

📄 accountfreezedexception.java

📁 基于struts的电子银行系统,为网上用户提供存款,取款,转帐等服务,拥有后台处理系统
💻 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 + -