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: import fit.exception.FitFailureException;
06:
07: public class NoSuchMethodFitFailureException extends
08: FitFailureException {
09:
10: private static final long serialVersionUID = 1L;
11:
12: public NoSuchMethodFitFailureException(String name) {
13: super ("Could not find method: " + name + ".");
14: }
15: }
|