📄 processingerrorexception.java
字号:
package examples.ejb20.basic.statefulSession;
/**
* This class is used with the examples.ejb20.statefulSession package.
* ProcessingErrorException is thrown if an error occurs while
* either buying or selling a stock.
*
* @author Copyright (c) 1998-2003 by BEA Systems, Inc. All Rights Reserved.
*/
public class ProcessingErrorException extends Exception {
/**
* Catches exceptions without a specified string
*
*/
public ProcessingErrorException() {}
/**
* Constructs the appropriate exception with the specified string
*
* @param message Exception message
*/
public ProcessingErrorException(String message) {super(message);}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -