- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.management.JMRuntimeException
-
- javax.management.RuntimeOperationsException
-
- すべての実装されたインタフェース:
Serializable
public class RuntimeOperationsException extends JMRuntimeException
MBeanでオペレーションの実行時にエージェント内でスローされる実行時例外を表します。 実際にスローされるjava.lang.RuntimeException
をラップします。- 導入されたバージョン:
- 1.5
- 関連項目:
- 直列化された形式
-
-
コンストラクタのサマリー
コンストラクタ コンストラクタ 説明 RuntimeOperationsException(RuntimeException e)
実際のjava.lang.RuntimeException
をラップするRuntimeOperationsException
を作成します。RuntimeOperationsException(RuntimeException e, String message)
実際のjava.lang.RuntimeException
と詳細メッセージをラップするRuntimeOperationsException
を作成します。
-
メソッドのサマリー
すべてのメソッド インスタンス・メソッド 具象メソッド 修飾子と型 メソッド 説明 Throwable
getCause()
スローされた実際のRuntimeException
を返します。RuntimeException
getTargetException()
スローされた実際のRuntimeException
を返します。-
クラス java.lang.Objectから継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
クラス java.lang.Throwableから継承されたメソッド
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
コンストラクタの詳細
-
RuntimeOperationsException
public RuntimeOperationsException(RuntimeException e)
実際のjava.lang.RuntimeException
をラップするRuntimeOperationsException
を作成します。- パラメータ:
e
- ラップされた例外。
-
RuntimeOperationsException
public RuntimeOperationsException(RuntimeException e, String message)
実際のjava.lang.RuntimeException
と詳細メッセージをラップするRuntimeOperationsException
を作成します。- パラメータ:
e
- ラップされた例外。message
- 詳細メッセージ。
-
-
メソッドの詳細
-
getTargetException
public RuntimeException getTargetException()
スローされた実際のRuntimeException
を返します。- 戻り値:
- ラップされた
RuntimeException
。
-
getCause
public Throwable getCause()
スローされた実際のRuntimeException
を返します。- オーバーライド:
getCause
、クラス:Throwable
- 戻り値:
- ラップされた
RuntimeException
。
-
-