accountnotexistexception.java

来自「基于B/S模式的网上一行系统」· Java 代码 · 共 36 行

JAVA
36
字号
/*
 * Created on 2005-7-25
 *
 */
package banksystem.exception;
/**
 * @author 曲本盛
 *
 * TODO Struts 项目实践
 */
public class AccountNotExistException extends Exception {
	protected String key = null;		
	
	public AccountNotExistException() {}
	/**
	 * @param key
	 */
	public AccountNotExistException(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 + =
减小字号Ctrl + -
显示快捷键?