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