DataServiceException コンストラクター (String, Exception)

指定されたエラー メッセージ、およびこの例外の原因となった内部例外への参照を使用して、DataServiceException クラスの新しいインスタンスを初期化します。

名前空間:  System.Data.Services
アセンブリ:  Microsoft.Data.Services (Microsoft.Data.Services.dll)

構文

'宣言
Public Sub New ( _
    message As String, _
    innerException As Exception _
)
'使用
Dim message As String
Dim innerException As Exception

Dim instance As New DataServiceException(message, _
    innerException)
public DataServiceException(
    string message,
    Exception innerException
)
public:
DataServiceException(
    String^ message, 
    Exception^ innerException
)
new : 
        message:string * 
        innerException:Exception -> DataServiceException
public function DataServiceException(
    message : String, 
    innerException : Exception
)

パラメーター

  • message
    型: System.String
    例外を説明するメッセージ。このコンストラクターの呼び出し元は、この文字列が現在のシステムのカルチャに合わせてローカライズ済みであることを確認しておく必要があります。
  • innerException
    型: System.Exception
    現在の例外の原因である例外。

説明

前の例外の直接の結果としてスローされる例外については、InnerException プロパティに、前の例外への参照が格納されます。 InnerException プロパティは、コンストラクターに渡されたものと同じ値を返します。InnerException プロパティによって内部例外値がコンストラクターに渡されなかった場合は、nullNULL 参照 (Visual Basic では Nothing) を返します。

DataServiceException のインスタンスの初期プロパティ値を次の表に示します。

プロパティ

InnerException

nullNULL 参照 (Visual Basic では Nothing)。

Message

message に指定されたエラー メッセージ文字列。

関連項目

参照

DataServiceException クラス

DataServiceException オーバーロード

System.Data.Services 名前空間

その他の技術情報

Handling and Throwing Exceptions