JavaTM 2 Platform
Standard Ed. 6

javax.management.remote
類別 JMXServerErrorException

java.lang.Object
  繼承者 java.lang.Throwable
      繼承者 java.lang.Exception
          繼承者 java.io.IOException
              繼承者 javax.management.remote.JMXServerErrorException
所有已實作的介面:
Serializable

public class JMXServerErrorException
extends IOException

在處理遠端 MBean 伺服器中的調用的過程中拋出了 Error 時,遠端 MBeanServer 方法調用導致拋出的異常。JMXServerErrorException 實例包含作為其 cause 而發生的初始 Error

從以下版本開始:
1.5
另請參見:
ServerError, 序列化表格

建構子摘要
JMXServerErrorException(String s, Error err)
          建構帶指定詳細訊息和巢狀錯誤的 JMXServerErrorException
 
方法摘要
 Throwable getCause()
          返回此 throwable 的 cause;如果 cause 不存在或未知,則返回 null
 
從類別 java.lang.Throwable 繼承的方法
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

建構子詳細資訊

JMXServerErrorException

public JMXServerErrorException(String s,
                               Error err)
建構帶指定詳細訊息和巢狀錯誤的 JMXServerErrorException

參數:
s - 詳細訊息。
err - 巢狀錯誤。此參數為 null 時也可以建構該類別的實例,但標準的連接器不這樣做。
方法詳細資訊

getCause

public Throwable getCause()
從類別 Throwable 複製的描述
返回此 throwable 的 cause;如果 cause 不存在或未知,則返回 null。(該 Cause 是導致拋出此 throwable 的throwable。)

此實作返回由一個需要 Throwable 的建構子提供的 cause,或者在創建之後通過 Throwable.initCause(Throwable) 方法進行設置的 cause。雖然通常不需要覆寫此方法,但子類別可以覆寫它,以返回一個通過某些其他方式設置的 cause。這適用於在異常鏈(異常巢狀)機制被加入到 Throwable 之前存在“遺留 Throwable 鏈機制”的情況。注意,不必 覆寫任何 PrintStackTrace 方法,所有方法都調用 getCause 方法來確定 throwable 的 cause。

覆寫:
類別 Throwable 中的 getCause
返回:
此 throwable 的 cause,如果 cause 不存在或是未知的,則返回 null

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only