orderminimumamountexception.java
来自「struts+spring+hibernate的例子」· Java 代码 · 共 30 行
JAVA
30 行
/*
* Created on Mar 5, 2004
*
* (c) 2004, Mark Eagle, meagle@meagle.com
* relased under terms of the GNU public license
* http://www.gnu.org/licenses/licenses.html#TOCGPL
*/
package com.meagle.exception;
/**
* @author MEagle
*
* Thrown when the order is not placed above a minimum value
*/
public class OrderMinimumAmountException extends Exception {
/**
* Default constructor
*/
public OrderMinimumAmountException() {
super();
}
/**
* @param s
*/
public OrderMinimumAmountException(String s) {
super(s);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?