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