01: // CvsException.java
02: // $Id: CvsException.java,v 1.3 2000/08/16 21:37:26 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.cvs;
07:
08: /**
09: * This exception is used whenever an abnormal situation in CVS processing
10: * is encountered.
11: */
12:
13: public class CvsException extends Exception {
14:
15: CvsException(String msg) {
16: super(msg);
17: }
18: }
|