public final class TRANSACTION_UNAVAILABLE extends SystemException
TRANSACTION_UNAVAILABLE服务的连接异常终止,所以ORB无法处理事务服务上下文时抛出CORBA TRANSACTION_UNAVAILABLE异常。 
       它包含一个次要代码,它提供有关导致异常的信息以及完成状态。 
       它也可以包含描述异常的字符串。 
       OMG CORBA核心2.4规范有详细说明。 
      completed, minor| Constructor and Description | 
|---|
| TRANSACTION_UNAVAILABLE()
              构造一个 
              TRANSACTION_UNAVAILABLE异常,默认次要代码为0,完成状态为CompletionStatus.COMPLETED_NO,并且为空描述。 | 
| TRANSACTION_UNAVAILABLE(int minor, CompletionStatus completed)
              构造具有 
              TRANSACTION_UNAVAILABLE的次要代码和完成状态的TRANSACTION_UNAVAILABLE异常。 | 
| TRANSACTION_UNAVAILABLE(String s)
              构造一个 
              TRANSACTION_UNAVAILABLE异常,指定的描述消息,次要代码为0,完成状态为COMPLETED_NO。 | 
| TRANSACTION_UNAVAILABLE(String s, int minor, CompletionStatus completed)
              构造具有 
              TRANSACTION_UNAVAILABLE的描述消息,次要代码和完成状态的TRANSACTION_UNAVAILABLE异常。 | 
toStringaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTracepublic TRANSACTION_UNAVAILABLE()
TRANSACTION_UNAVAILABLE异常,默认次要代码为0,完成状态为CompletionStatus.COMPLETED_NO和一个空描述。 
          public TRANSACTION_UNAVAILABLE(String s)
TRANSACTION_UNAVAILABLE TRANSACTION_UNAVAILABLE异常,次要代码为0,完成状态为COMPLETED_NO。 
          s - 包含详细消息的字符串 
           public TRANSACTION_UNAVAILABLE(int minor,
                               CompletionStatus completed) 
          TRANSACTION_UNAVAILABLE的次要代码和完成状态的TRANSACTION_UNAVAILABLE异常。 
          minor - 次要代码 
           completed - 完成状态 
           public TRANSACTION_UNAVAILABLE(String s, int minor, CompletionStatus completed)
TRANSACTION_UNAVAILABLE的描述消息,次要代码和完成状态的TRANSACTION_UNAVAILABLE异常。 
          s - 包含描述消息的字符串 
           minor - 次要代码 
           completed - 完成状态 
            Submit a bug or feature 
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
 Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.