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: /*
04: * @author Rick Mugridge 1/10/2003
05: *
06: * Copyright (c) 2003 Rick Mugridge, University of Auckland, NZ
07: * Released under the terms of the GNU General Public License version 2 or later.
08: *
09: */
10: package fit.exception;
11:
12: /**
13: * Provides an exception's way out when things go wrong. But it's trapped by
14: * Fixture.exception print the contained message instead of a stackdump of the
15: * exception.
16: */
17: public class FitFailureException extends RuntimeException {
18:
19: private static final long serialVersionUID = 1L;
20:
21: public FitFailureException(String s) {
22: super(s);
23: }
24: }
|