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: package fit.exception;
05:
06: public class CouldNotLoadComponentFitFailureException extends
07: FitFailureException {
08: public CouldNotLoadComponentFitFailureException(String component,
09: String fixtureName) {
10: super ("Could not load " + component
11: + " which is a component of " + fixtureName);
12: }
13: }
|