Class Environment
- java.lang.Object
-
- org.omg.CORBA.Environment
public abstract class Environment extends Object
A container (holder) for an exception that is used in Request operations to make exceptions available to the client. An Environment object is created with the ORB method create_environment.
- Since:
- JDK1.2
Constructors
| Constructor and Description |
|---|
Environment() |
Methods
| Modifier and Type | Method and Description |
|---|---|
abstract void |
clear() Clears this |
abstract Exception |
exception() Retrieves the exception in this |
abstract void |
exception(Exception except) Inserts the given exception into this |
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait Constructors
Environment
public Environment()
Methods
exception
public abstract Exception exception()
Retrieves the exception in this Environment object.
- Returns:
- the exception in this
Environmentobject
exception
public abstract void exception(Exception except)
Inserts the given exception into this Environment object.
- Parameters:
-
except- the exception to be set
clear
public abstract void clear()
Clears this Environment object of its exception.
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/javase/8/docs/api/org/omg/CORBA/Environment.html