01: /*
02: * Copyright (c) 2003 Rick Mugridge, University of Auckland, NZ
03: * Released under the terms of the GNU General Public License version 2 or later.
04: */
05: package fit.exception;
06:
07: /**
08: * An exception that's ignored for an embedded table with FixtureFixture. Use
09: * when the problem has already been signalled locally.
10: */
11: public class IgnoredException extends RuntimeException {
12:
13: private static final long serialVersionUID = 1L;
14: }
|