01: // DirectoryResource.java
02: // $Id: ControlCommandException.java,v 1.2 2000/08/16 21:37:47 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.jigsaw.ssi.commands;
07:
08: public class ControlCommandException extends Exception {
09:
10: public ControlCommandException(String msg) {
11: super (msg);
12: }
13:
14: public ControlCommandException(String name, String msg) {
15: super ("[" + name + "] : " + msg);
16: }
17:
18: }
|