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