01: // @(#)ProxyAuthNeededException.java 1.1 "@(#)ProxyAuthNeededException.java 1.1 00/02/07 Sun Microsystems"
02:
03: package com.sun.portal.netlet.client.common;
04:
05: /*
06: * utility exception thrown by ProxySConn class to signify that the
07: * proxy wants authentication
08: */
09:
10: public class ProxyAuthNeededException extends Exception {
11:
12: public ProxyAuthNeededException(String message) {
13: super(message);
14: }
15: }
|