📄 processingerrorexception.java
字号:
package examples.ejb20.sequence.userDesignated;
/**
* This class is used with the WebLogic EJBean container-managed example package.
* ProcessingErrorException is thrown if the caller attempts
* to withdraw more than a certain preset limit from the account.
*
* @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 String Exception message
*/
public ProcessingErrorException(String message) {super(message);}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -