📄 trademanagementeventexception.java
字号:
/*
* @author : Pushkala
* @version : 1.0
*
* Development Environment : Oracle9i JDeveloper
*
* Name of the File : TradeManagementEventException.java
*
* Creation / Modification History
* Pushkala 26-Apr-2002 Created
*
*/
package oracle.otnsamples.ibfbs.trademanagement.exception;
/**
* This class extends the standard Exception. This exception is thrown by all
* classes implementing the Trade Management functionality when an exception
* occurs. This is registered in the file Exception.xml and is mapped to the
* corresponding JSP file which displays the Exception Message.
*
* @version 1.0
* @since 1.0
*/
public class TradeManagementEventException extends Exception {
/**
* Default constructor. Calls the constructor of the base Exception class
* @since 1.0
*/
public TradeManagementEventException() {
super();
}
/**
* Constructor which sets the value of exception message in the Exception
* class with the value of the input exception string.
*
* @param errorString Exception Message
* @since 1.0
*/
public TradeManagementEventException(String errorString) {
super(errorString);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -