01: // ICPProtocolException.java
02: // $Id: ICPProtocolException.java,v 1.2 1998/01/22 14:38:44 bmahe 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.www.protocol.http.icp;
07:
08: class ICPProtocolException extends Exception {
09:
10: ICPProtocolException(String msg) {
11: super(msg);
12: }
13:
14: }
|