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