PlotterException.java

/*
 * Created on 2006/10/30
 * Copyright (C) 2006 Koga Laboratory. All rights reserved.
 *
 */
package org.mklab.tool.graph;

/**
 * プロッターに関する例外を表すクラスです。
 * 
 * @author koga
 * @version $Revision: 1.1 $, 2006/10/30
 */
public class PlotterException extends RuntimeException {

  /** */
  private static final long serialVersionUID = -8865486970268303527L;

  /**
   * 新しく生成された<code>PlotterException</code>オブジェクトを初期化します。
   * 
   * @param message メッセージ
   */
  public PlotterException(String message) {
    super(message);
  }

  /**
   * 新しく生成された<code>PlotterException</code>オブジェクトを初期化します。
   */
  public PlotterException() {
    super();
  }

  /**
   * 新しく生成された<code>PlotterException</code>オブジェクトを初期化します。
   * 
   * @param message メッセージ
   * @param cause 原因となる例外
   */
  public PlotterException(String message, Throwable cause) {
    super(message, cause);
  }

  /**
   * 新しく生成された<code>PlotterException</code>オブジェクトを初期化します。
   * 
   * @param cause 原因となる例外
   */
  public PlotterException(Throwable cause) {
    super(cause);
  }
}