/*
 * @author  : Elangovan
 * @version : 1.0
 *
 * Development Environment : Oracle9i JDeveloper
 * Name of the File        : AdminHelperException.java
 *
 * Creation / Modification History
 *    Elangovan           26-Apr-2002        Created
 *
 */
package oracle.otnsamples.ibfbs.admin.exception;

/**
 * This class extends the standard Exception. It is thrown when there is some
 * failure in Admin request processing.
 *
 * @version 1.0
 * @since 1.0
 */
public class AdminHelperException extends Exception {

  /**
   *  Default constructor.
   */
  public AdminHelperException() {
    super();
  }

  /**
   * Initializes the class with the given exception message.
   *
   * @param msg Exception message
   * @since 1.0
   */
  public AdminHelperException(String msg) {
    super(msg);
  }
  
}