customerdoesnotexistexception.java

来自「噶额外噶外骨骼感广泛高热感 就 啊啊」· Java 代码 · 共 20 行

JAVA
20
字号
package itso.bank.exception;

/**
 * This exception is thrown when an invalid customer number
 * is entered.
 * 
 * @author Fabio Ferraz, Henrik Sjostrand
 */

public class CustomerDoesNotExistException extends BankException
{
	public String getMessage() {
		return "Customer does not exist. Please, try a different customer number.";
	}

	public String getMessageKey() {
		return "error.customerDoesNotExistException";
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?