01: // $Id: CvsCommitException.java,v 1.3 2000/08/16 21:37:25 ylafon Exp $
02: // (c) COPYRIGHT MIT and INRIA, 1998.
03: // Please first read the full copyright statement in file COPYRIGHT.html
04:
05: package org.w3c.cvs;
06:
07: /**
08: * @version $Revision: 1.3 $
09: * @author Benoît Mahé (bmahe@w3.org)
10: */
11: public class CvsCommitException extends CvsException {
12:
13: CvsCommitException(String filename) {
14: super(filename);
15: }
16:
17: }
|