Interstage Application Server リファレンスマニュアル(API編)
|
目次
索引

|
3.10 ExceptionListクラス
IDLで定義したオペレーションが発生させる例外を、TypeCodeオブジェクトのリストとして管理するために使用するExceptionListクラスについて説明します(動的呼び出しインタフェースで使用)。
//Java
package org.omg.CORBA;
public abstract class ExceptionList
{
public abstract int count();
public abstract void add(org.omg.CORBA.TypeCode exc);
public abstract TypeCode item(int index)
throws org.omg.CORBA.Bounds;
public abstract void remove(int index)
throws org.omg.CORBA.Bounds;
}
3.10.1 org.omg.CORBA.ExceptionList.count()
3.10.2 org.omg.CORBA.ExceptionList.add()
3.10.3 org.omg.CORBA.ExceptionList.item()
3.10.4 org.omg.CORBA.ExceptionList.remove()
All Rights Reserved, Copyright(C) 富士通株式会社 2005