- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.omg.CORBA.portable.ApplicationException
-
- All Implemented Interfaces:
-
Serializable
public class ApplicationException extends 异常
此类用于报告ORB和存根之间的应用程序级异常。
-
-
构造方法摘要
构造方法 Constructor 描述 ApplicationException(String id, InputStream ins)
从异常的CORBA存储库ID中构造一个ApplicationException,以及可以读取异常数据作为参数的输入流。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 String
getId()
返回异常的CORBA存储库ID,而不从异常输入流中删除它。InputStream
getInputStream()
返回可以读取异常数据作为参数的输入流。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
ApplicationException
public ApplicationException(String id, InputStream ins)
从异常的CORBA存储库ID中构造一个ApplicationException,以及可以读取异常数据作为参数的输入流。- 参数
-
id
- 用户异常的存储库ID -
ins
- 包含用户异常数据的流
-
-
方法详细信息
-
getId
public String getId()
返回异常的CORBA存储库ID,而不从异常输入流中删除它。- 结果
- 该异常的CORBA存储库ID
-
getInputStream
public InputStream getInputStream()
返回可以读取异常数据作为参数的输入流。- 结果
- 包含用户异常数据的流
-
-