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: import fit.exception.FitFailureException;
08:
09: public class VoidMethodFitFailureException extends FitFailureException {
10:
11: private static final long serialVersionUID = 1L;
12:
13: public VoidMethodFitFailureException(String name) {
14: super ("Method " + name + " is void.");
15: }
16: }
|