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: // Copyright (C) 2003,2004 by Object Mentor, Inc. All rights reserved.
04: // Released under the terms of the GNU General Public License version 2 or
05: // later.
06: package fit.exception;
07:
08: public class NoSuchFixtureException extends FixtureException {
09:
10: private static final long serialVersionUID = 1L;
11:
12: public NoSuchFixtureException(String fixtureName) {
13: super ("Could not find fixture: {0}.", fixtureName);
14: }
15: }
|