/**
 * Copyright (c) 2003-2004 System Integrator Corporation.
 *                 All Rights Reserved.
 */
package jp.co.sint.tools;

/**
 * @version $Id: SIWarningException.java,v 1.0 2003/07/25 Exp $
 * @author  Jinwang Chen
 * <br>Description: カスタマイズのInfo例外
 * <p>History</p>
 * <p>Author&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Date&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reason</p>
 * ============&nbsp;&nbsp;&nbsp;==========&nbsp;&nbsp;===========================<br>
 * J.W.Chen       2003/06/25  Original
 */

public class SIWarningException extends SIException {

  /**
   * <b>SIWarningException</b>
   * コンストラクタ
   * @param なし
   * @return なし
   * @throws なし
   */
  public SIWarningException() {
    super(ISIExceptionUtil.WARNING_EXCEPTION);
  }

  /**
   * <b>SIWarningException</b>
   * コンストラクタ
   * @param exceptionMessage エラーの例外のメッセージ
   * @return なし
   * @throws なし
   */
  public SIWarningException(String exceptionMessage){
    super(ISIExceptionUtil.WARNING_EXCEPTION,exceptionMessage);
  }

 public SIWarningException(Exception e){
   super(ISIExceptionUtil.WARNING_EXCEPTION,e);
 }
}