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