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 fitnesse.wiki;
04:
05: public class NoSuchVersionException extends Exception {
06: private static final long serialVersionUID = 1L;
07:
08: public NoSuchVersionException(String message) {
09: super(message);
10: }
11: }
|