FileDocCategorySizeDatePackage
UnknownUserException.javaAPI DocJava SE 5 API1429Fri Aug 26 14:58:32 BST 2005org.omg.CORBA

UnknownUserException

public final class UnknownUserException extends UserException
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 Any object contained in the UnknownUserException object. This is available from the Environment object returned by the method Request.env.
see
documentation on Java IDL exceptions
see
Request

Fields Summary
public Any
except
The Any instance that contains the actual user exception thrown by the server.
Constructors Summary
public UnknownUserException()
Constructs an UnknownUserException object.

        super();
    
public UnknownUserException(Any a)
Constructs an UnknownUserException object that contains the given Any object.

param a an Any object that contains a user exception returned by the server

        super();
        except = a;
    
Methods Summary