/*
 * @author  : Elangovan
 * @version : 1.0
 *
 * Development Environment : Oracle9i JDeveloper
 * Name of the File        : WebServiceAccessException.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 webservice
 * access fails.
 *
 * @version 1.0
 * @since 1.0
 */
public class WebServiceAccessException extends Exception {

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

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

}