01: // SSIException.java
02: // $Id: SSIException.java,v 1.6 1998/01/22 14:13:29 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.jigsaw.ssi;
07:
08: /**
09: * Internal exceptions in the SSIFrame
10: * @author Antonio Ramirez <anto@mit.edu>
11: */
12: class SSIException extends Exception {
13: public SSIException(String msg) {
14: super(msg);
15: }
16: }
|