001package daikon.simplify;
002
003/** Superclass of all RuntimeExceptions in this package. */
004public class SimplifyError extends RuntimeException {
005  static final long serialVersionUID = 20020122L;
006
007  public SimplifyError() {
008    super();
009  }
010
011  public SimplifyError(String s) {
012    super(s);
013  }
014
015  /**
016   * Constructs a new SimplifyError with the specified cause.
017   *
018   * @param cause the cause
019   */
020  public SimplifyError(Throwable cause) {
021    super(cause);
022  }
023}