⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usermanagementeventexception.java

📁 Oracle的J2EE Sample
💻 JAVA
字号:
/*
 * @author : Umesh Kulkarni
 * @version 1.0
 *
 * Development Environment : Oracle9i JDeveloper
 *
 * Name of the File : UserManagementEventException.java
 *
 * Creation / Modification History
 *    Umesh           26-Apr-2002        Created
 *
 */
package oracle.otnsamples.ibfbs.usermanagement.exception;

/**
 * This Exception Class is a customized Exception Class which captures 
 * exceptions related to User Management Functionality. Note that this 
 * class extends Exception class.
 *
 * @version 1.0
 * @since   1.0
 */
public class UserManagementEventException extends Exception {

  /**
   * Empty Constructor of this Class
   * @since   1.0
   */
  public UserManagementEventException() {}

  /**
   * Constructor with Error Message as parameter
   *
   * @param str Error Message
   * @since   1.0
   */
  public UserManagementEventException(String str) {
    super(str);
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -