01: // CommandParseException.java
02: // $Id: CommandParseException.java,v 1.2 2002/02/04 17:28:12 cbournez Exp $
03: // (c) COPYRIGHT MIT and INRIA, 2002.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.offline.command;
07:
08: /**
09: * The command line is not a valid jigshell command
10: */
11:
12: public class CommandParseException extends Exception {
13:
14: public CommandParseException() {
15: super ("ParseError");
16: }
17:
18: }
|