01: // This file is part of KeY - Integrated Deductive Software Design
02: // Copyright (C) 2001-2007 Universitaet Karlsruhe, Germany
03: // Universitaet Koblenz-Landau, Germany
04: // Chalmers University of Technology, Sweden
05: //
06: // The KeY system is protected by the GNU General Public License.
07: // See LICENSE.TXT for details.
08: //
09: //
10:
11: // CvsException.java
12: // $Id: CvsException.java 1.3 Mon, 28 Feb 2005 14:52:06 +0100 andreas $
13: // (c) COPYRIGHT MIT and INRIA, 1996.
14: // Please first read the full copyright statement in file COPYRIGHT.html
15:
16: package de.uka.ilkd.key.proof.mgt;
17:
18: /**
19: * This exception is used whenever an abnormal situation in CVS processing
20: * is encountered.
21: */
22:
23: public class CvsException extends Exception {
24:
25: CvsException(String msg) {
26: super(msg);
27: }
28: }
|