Package org.omg.CORBA
Class UnknownUserException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.omg.CORBA.UserException
org.omg.CORBA.UnknownUserException
- All Implemented Interfaces:
Serializable
,IDLEntity
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 Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs anUnknownUserException
object.Constructs anUnknownUserException
object that contains the givenAny
object. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
except
TheAny
instance that contains the actual user exception thrown by the server.
-
-
Constructor Details
-
UnknownUserException
public UnknownUserException()Constructs anUnknownUserException
object. -
UnknownUserException
Constructs anUnknownUserException
object that contains the givenAny
object.- Parameters:
a
- anAny
object that contains a user exception returned by the server
-