001package daikon.tools.runtimechecker;
002
003/** Thrown when parsing the XML representation of a property, if the property is not well-formed. */
004public class MalformedPropertyException extends Exception {
005
006  private static final long serialVersionUID = 1L;
007
008  public MalformedPropertyException(String s) {
009    super(s);
010  }
011}