trademanagementeventexception.java

来自「Oracle的J2EE Sample」· Java 代码 · 共 45 行

JAVA
45
字号
/*
 * @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 + =
减小字号Ctrl + -
显示快捷键?