Need to be able to throw an exception in parseAndSet().

git-svn-id: https://samskivert.googlecode.com/svn/trunk@476 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-11-26 22:17:56 +00:00
parent bf63f50762
commit f4c7631048
@@ -1,5 +1,5 @@
//
// $Id: CallMethodSpecialRule.java,v 1.1 2001/11/17 03:46:48 mdb Exp $
// $Id: CallMethodSpecialRule.java,v 1.2 2001/11/26 22:17:56 mdb Exp $
//
// samskivert library - useful routines for java programs
// Copyright (C) 2001 Walter Korman
@@ -53,7 +53,8 @@ public abstract class CallMethodSpecialRule extends Rule
parseAndSet(_bodyText, top);
}
public abstract void parseAndSet (String bodyText, Object target);
public abstract void parseAndSet (String bodyText, Object target)
throws Exception;
protected String _bodyText;
}