brokerexception.java
来自「java写的股票交易系统」· Java 代码 · 共 19 行
JAVA
19 行
package trader;
public class BrokerException extends Exception{
/**
* Creates new <code>BrokerException</code> without detail message.
*/
public BrokerException() {
this("BrokerException");
}
/**
* Constructs an <code>BrokerException</code> with the specified
* detail message.
* @param msg the detail message.
*/
public BrokerException(String msg) {
super(msg);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?