- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.omg.CORBA.SystemException
-
- org.omg.CORBA.ACTIVITY_COMPLETED
-
- All Implemented Interfaces:
-
Serializable
public final class ACTIVITY_COMPLETED extends SystemException
可以在任何访问Activity上下文的方法上引发ACTIVITY_COMPLETED
系统异常。 它表示由于活动本身或包含活动的事务超时或活动以不同于原始请求的方式完成,因此进行方法调用的活动上下文已经完成。- 从以下版本开始:
- J2SE 1.5
-
-
Field Summary
-
Fields inherited from class org.omg.CORBA.SystemException
completed, minor
-
-
构造方法摘要
构造方法 Constructor 描述 ACTIVITY_COMPLETED()
构造一个ACTIVITY_COMPLETED
异常,次要代码设置为0,CompletionStatus设置为COMPLETED_NO。ACTIVITY_COMPLETED(int minorCode, CompletionStatus completionStatus)
构造具有指定的次要代码和完成状态的ACTIVITY_COMPLETED
异常。ACTIVITY_COMPLETED(String detailMessage)
使用指定的消息构造一个ACTIVITY_COMPLETED
异常。ACTIVITY_COMPLETED(String detailMessage, int minorCode, CompletionStatus completionStatus)
构造具有指定消息,次要代码和完成状态的ACTIVITY_COMPLETED
异常。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class org.omg.CORBA.SystemException
toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
构造方法详细信息
-
ACTIVITY_COMPLETED
public ACTIVITY_COMPLETED()
构造一个ACTIVITY_COMPLETED
异常,次要代码设置为0,CompletionStatus设置为COMPLETED_NO。
-
ACTIVITY_COMPLETED
public ACTIVITY_COMPLETED(String detailMessage)
构造具有指定消息的ACTIVITY_COMPLETED
异常。- 参数
-
detailMessage
- 包含详细消息的字符串。
-
ACTIVITY_COMPLETED
public ACTIVITY_COMPLETED(int minorCode, CompletionStatus completionStatus)
构造具有指定的次要代码和完成状态的ACTIVITY_COMPLETED
异常。- 参数
-
minorCode
- 次要代码。 -
completionStatus
- 完成状态。
-
ACTIVITY_COMPLETED
public ACTIVITY_COMPLETED(String detailMessage, int minorCode, CompletionStatus completionStatus)
构造具有指定消息,次要代码和完成状态的ACTIVITY_COMPLETED
异常。- 参数
-
detailMessage
- 包含详细消息的字符串。 -
minorCode
- 次要代码。 -
completionStatus
- 完成状态。
-
-