?? 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);}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -