- /*
- * @(#)UnknownUserException.java 1.16 00/02/02
- *
- * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the proprietary information of Sun Microsystems, Inc.
- * Use is subject to license terms.
- *
- */
-
- package org.omg.CORBA;
-
- /**
- * A class that contains user exceptions returned by the server.
- * When the client uses the DII to make an invocation, any user exception
- * returned from the server is enclosed in an <code>Any</code> object contained in the
- * <code>UnknownUserException</code> object. This is available from the
- * <code>Environment</code> object returned by the method <code>Request.env</code>.
- *
- * @see <A href="../../../../guide/idl/jidlExceptions.html">documentation on
- * Java IDL exceptions</A>
- * @see Request
- */
-
- public final class UnknownUserException extends UserException {
-
- /** The <code>Any</code> instance that contains the actual user exception thrown
- * by the server.
- * @serial
- */
- public Any except;
-
- /**
- * Constructs an <code>UnknownUserException</code> object.
- */
- public UnknownUserException() {
- super();
- }
-
- /**
- * Constructs an <code>UnknownUserException</code> object that contains the given
- * <code>Any</code> object.
- */
- public UnknownUserException(Any a) {
- super();
- except = a;
- }
- }
-