01: // Modified or written by Object Mentor, Inc. for inclusion with FitNesse.
02: // Copyright (c) 2002 Cunningham & Cunningham, Inc.
03: // Released under the terms of the GNU General Public License version 2 or later.
04: package fit.exception;
05:
06: import java.text.ParseException;
07:
08: public class FitParseException extends ParseException {
09: public FitParseException(String s, int i) {
10: super(s, i);
11: }
12: }
|