01: /*
02: * ProxyUnreachableException.java
03: *
04: * Created on May 21, 2003, 11:53 AM
05: */
06:
07: package com.sun.portal.util;
08:
09: /**
10: *
11: * @author rt130506
12: */
13: public class ProxyUnreachableException extends Exception {
14:
15: /** Creates a new instance of ProxyUnreachableException */
16: public ProxyUnreachableException(String message) {
17: super(message);
18: }
19:
20: }
|