14.23 ExceptionList Member Functions
The ExceptionList
member functions allow a client or server application to provide a list of TypeCodes for all user-defined exceptions that may result when the Request is invoked. For a description of the Request member functions, see the section Request Member Functions.
The mapping of these member functions to C++ is as follows:
class CORBA
{
class ExceptionList
{
public:
Ulong count();
void add(TypeCode_ptr tc);
void add_consume(TypeCode_ptr tc);
TypeCode_ptr item(Ulong index);
Status remove(Ulong index);
}; // ExceptionList
} // CORBA
- CORBA::ExceptionList::count
- CORBA::ExceptionList::add
- CORBA::ExceptionList::add_consume
- CORBA::ExceptionList::item
- <Enter Topic Title Here>
(Required) <Enter a short description here.>
Parent topic: CORBA API