01: // Copyright (C) 2003,2004,2005 by Object Mentor, Inc. All rights reserved.
02: // Released under the terms of the GNU General Public License version 2 or later.
03: package fit.exception;
04:
05: import java.text.ParseException;
06:
07: public class FitParseException extends ParseException {
08:
09: private static final long serialVersionUID = 1L;
10:
11: public FitParseException(String s, int i) {
12: super(s, i);
13: }
14: }
|