- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.omg.CORBA.SystemException
-
- org.omg.CORBA.TRANSACTION_UNAVAILABLE
-
- All Implemented Interfaces:
-
Serializable
public final class TRANSACTION_UNAVAILABLE extends SystemException
由于ORB与事务服务的连接异常终止,所以ORB无法处理事务服务上下文时抛出CORBATRANSACTION_UNAVAILABLE
异常。 它包含一个次要代码,它提供有关导致异常的信息以及完成状态。 它也可以包含描述异常的字符串。 OMG CORBA核心2.4规范有详细说明。
-
-
Field Summary
-
Fields inherited from class org.omg.CORBA.SystemException
completed, minor
-
-
构造方法摘要
构造方法 Constructor 描述 TRANSACTION_UNAVAILABLE()
构造一个TRANSACTION_UNAVAILABLE
异常,默认次要代码为0,完成状态为CompletionStatus.COMPLETED_NO,并且为空描述。TRANSACTION_UNAVAILABLE(int minor, CompletionStatus completed)
构造具有指定的次要代码和完成状态的TRANSACTION_UNAVAILABLE
异常。TRANSACTION_UNAVAILABLE(String s)
构造一个TRANSACTION_UNAVAILABLE
异常,指定的描述消息,次要代码为0,完成状态为COMPLETED_NO。TRANSACTION_UNAVAILABLE(String s, int minor, CompletionStatus completed)
构造一个TRANSACTION_UNAVAILABLE
异常,其中包含指定的描述消息,次要代码和完成状态。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
TRANSACTION_UNAVAILABLE
public TRANSACTION_UNAVAILABLE()
构造一个TRANSACTION_UNAVAILABLE
异常,默认次要代码为0,完成状态为CompletionStatus.COMPLETED_NO,并且为空描述。
-
TRANSACTION_UNAVAILABLE
public TRANSACTION_UNAVAILABLE(String s)
构造一个TRANSACTION_UNAVAILABLE
异常,指定的描述消息,次要代码为0,完成状态为COMPLETED_NO。- 参数
-
s
- 包含详细消息的字符串
-
TRANSACTION_UNAVAILABLE
public TRANSACTION_UNAVAILABLE(int minor, CompletionStatus completed)
构造具有指定的次要代码和完成状态的TRANSACTION_UNAVAILABLE
异常。- 参数
-
minor
- 次要代码 -
completed
- 完成状态
-
TRANSACTION_UNAVAILABLE
public TRANSACTION_UNAVAILABLE(String s, int minor, CompletionStatus completed)
构造具有指定的描述消息,次要代码和完成状态的TRANSACTION_UNAVAILABLE
异常。- 参数
-
s
- 包含描述消息的字符串 -
minor
- 次要代码 -
completed
- 完成状态
-
-