org.omg.CORBA
Class ExceptionList

java.lang.Object
  extended by org.omg.CORBA.ExceptionList

public abstract class ExceptionList
extends Object

Stores exceptions that can be thrown when invoking a method of an CORBA Object.


Constructor Summary
ExceptionList()
           
 
Method Summary
abstract  void add(TypeCode an_exception)
          Add the typecode of the given exception to the list.
abstract  int count()
          Get the number of the stored exceptions.
abstract  TypeCode item(int at)
          Get the item at the given position.
abstract  void remove(int at)
          Remove the item at the given position.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ExceptionList

public ExceptionList()
Method Detail

add

public abstract void add(TypeCode an_exception)
Add the typecode of the given exception to the list.


count

public abstract int count()
Get the number of the stored exceptions.


item

public abstract TypeCode item(int at)
                       throws Bounds
Get the item at the given position.

Parameters:
at - the index
Throws:
Bounds - if the index is out of range.

remove

public abstract void remove(int at)
                     throws Bounds
Remove the item at the given position.

Parameters:
at - the index
Throws:
Bounds - if the index is out of range.