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: import fit.exception.FitFailureException;
07:
08: public class NoSuchMethodFitFailureException extends
09: FitFailureException {
10: public NoSuchMethodFitFailureException(String name) {
11: super ("Could not find method: " + name + ".");
12: }
13: }
|