RemoteExceptionInformation クラス

  • java.lang.Object
    • microsoft.servicefabric.services.communication.runtime.RemoteExceptionInformation

public class RemoteExceptionInformation

サービス レプリカからクライアントに例外の詳細を転送するために Service Remoting によって使用される障害の種類。

コンストラクターの概要

コンストラクター 説明
RemoteExceptionInformation(byte[] data)

データを使用して RemoteExceptionInformation オブジェクトをインスタンス化します

メソッドの概要

修飾子と型 メソッドと説明
RemoteExceptionInformation fromException(Exception exception)

例外から RemoteExceptionInformation を構築するファクトリ メソッド。

byte [] getData()

シリアル化された例外の詳細

Exception toException(RemoteExceptionInformation remoteExceptionInformation)

RemoteExceptionInformation から例外を取得します

コンストラクターの詳細

RemoteExceptionInformation

public RemoteExceptionInformation(byte[] data)

データを使用して RemoteExceptionInformation オブジェクトをインスタンス化します

パラメーター:

data - クライアントに送信されるデータ

メソッドの詳細

fromException

public static RemoteExceptionInformation fromException(Exception exception)

例外から RemoteExceptionInformation を構築するファクトリ メソッド。

パラメーター:

exception - 例外

戻り値:

RemoteExceptionInformation

スロー:

java.io.IOException - exception

getData

public byte [] getData()

シリアル化された例外の詳細

戻り値:

例外内のデータ

toException

public static Exception toException(RemoteExceptionInformation remoteExceptionInformation)

RemoteExceptionInformation から例外を取得します

パラメーター:

remoteExceptionInformation - RemoteExceptionInformation

戻り値:

有効な例外があった場合の例外

適用対象