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 ExtraCellsFailureException extends FitFailureException {
08: private static final long serialVersionUID = 1L;
09:
10: public ExtraCellsFailureException() {
11: super ("Extra table cells");
12: }
13: }
|