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

/**
 * @version $Id: SIDebtPointException.java,v 1.0 2004/10/20 Exp $
 * @author  Shionoya Yoshiaki
 * <br>Description: カスタマイズのDeptPoint（マイナスポイント）例外 ST0296 追加
 * <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>
 * Shionoya Yoshiaki       2004/10/20  Original
 */

public class SIDebtPointException extends SIException {

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

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

 public SIDebtPointException(Exception e){
   super(ISIExceptionUtil.DEBT_POINT_EXCEPTION,e);
 }
}