01: // UnknownServiceException.java
02: // $Id: UnknownServiceException.java,v 1.3 1998/07/24 14:14:37 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.pics;
07:
08: class UnknownServiceException extends Exception {
09:
10: UnknownServiceException(String m) {
11: super(m);
12: }
13:
14: }
|