userpasswordinvalidexception.java
来自「基于B/S模式的网上一行系统」· Java 代码 · 共 35 行
JAVA
35 行
/*
* Created on 2005-7-25
*
*/
package banksystem.exception;
/**
* @author 曲本盛
*
* TODO Struts 项目实践
*/
public class UserPasswordInvalidException extends Exception {
protected String key = null;
public UserPasswordInvalidException() {}
/**
* @param key is the properties key word
*/
public UserPasswordInvalidException(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 + -
显示快捷键?