01: // @(#)ProxyAuthFailedException.java 1.2 "@(#)ProxyAuthFailedException.java 1.2 00/02/09 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 authentication has failed
08: * - Messages to this exception get put up in a NetletErrorDialog and must be l10n
09: */
10:
11: public class ProxyAuthFailedException extends Exception {
12:
13: public ProxyAuthFailedException(String message) {
14: super(message);
15: }
16: }
|