01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fitnesse.fixtures;
04:
05: public class RowEntryExample extends RowEntryFixture {
06: public int v;
07:
08: public void enterRow() throws Exception {
09: if (v == 0)
10: throw new Exception("Oh, no! Zero!");
11: }
12: }
|