01: // RuleParserException.java
02: // $Id: RuleParserException.java,v 1.1 1998/09/11 10:37:26 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1998.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.www.protocol.http.proxy;
07:
08: /**
09: * Exception thrown when parsing the rule file fails.
10: */
11:
12: public class RuleParserException extends Exception {
13:
14: public RuleParserException(String msg) {
15: super(msg);
16: }
17:
18: }
|