001package daikon.simplify;
002
003/** Superclass of all checked exceptions in this package. */
004public class SimplifyException extends Exception {
005  // We are Serializable, so we specify a version to allow changes to
006  // method signatures without breaking serialization.  If you add or
007  // remove fields, you should change this number to the current date.
008  static final long serialVersionUID = 20020122L;
009
010  public SimplifyException() {
011    super();
012  }
013
014  public SimplifyException(String s) {
015    super(s);
016  }
017}