01: // Modified or written by Object Mentor, Inc. for inclusion with FitNesse.
02: // Copyright (c) 2002 Cunningham & Cunningham, Inc.
03: // Released under the terms of the GNU General Public License version 2 or later.
04: // Copyright (C) 2003,2004 by Object Mentor, Inc. All rights reserved.
05: // Released under the terms of the GNU General Public License version 2 or
06: // later.
07: package fit.exception;
08:
09: public class ClassIsNotFixtureException extends FixtureException {
10: public ClassIsNotFixtureException(String fixtureName) {
11: super ("Class {0} is not a fixture.", fixtureName);
12: }
13: }
|