processingerrorexception.java
来自「java的一系列产品中包括jsme,jmse,j2ee,本文件提供j2ee实现的」· Java 代码 · 共 19 行
JAVA
19 行
package stocktrader;
/**
* ProcessingErrorException is thrown if an error occurs while
* either buying or selling a stock.
*/
public class ProcessingErrorException extends Exception {
/**
* Catches exceptions without a specified string
*/
public ProcessingErrorException() {}
/**
* Constructs the appropriate exception with the specified string
*/
public ProcessingErrorException(String message) {super(message);}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?