01: // RemoteAccessException.java
02: // $Id: RemoteAccessException.java,v 1.3 1998/01/22 13:48:53 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1997.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.jigsaw.admin;
07:
08: /**
09: * The exception for network failure.
10: */
11:
12: public class RemoteAccessException extends Exception {
13:
14: public RemoteAccessException(String msg) {
15: super(msg);
16: }
17:
18: }
|