01: /*
02: * Copyright (c) 2003 Rick Mugridge, University of Auckland, New Zealand.
03: * Released under the terms of the GNU General Public License version 2 or later.
04: */
05: package fit.exception;
06:
07: public class AmbiguousNameFailureException extends FitFailureException {
08: private static final long serialVersionUID = 1L;
09:
10: public AmbiguousNameFailureException(String name) {
11: super ("\"" + name + "\" is ambiguous");
12: }
13: }
|