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.testutil;
04:
05: import fit.Fixture;
06:
07: public class ClassNotFoundThrownInConstructor extends Fixture {
08: public ClassNotFoundThrownInConstructor()
09: throws ClassNotFoundException {
10: Class.forName("NoSuchClass");
11: }
12: }
|