次の方法で共有


BatchErrorException コンストラクター

定義

オーバーロード

BatchErrorException()

BatchErrorException クラスの新しいインスタンスを初期化します。

BatchErrorException(String)

BatchErrorException クラスの新しいインスタンスを初期化します。

BatchErrorException(String, Exception)

BatchErrorException クラスの新しいインスタンスを初期化します。

BatchErrorException()

ソース:
BatchErrorException.cs

BatchErrorException クラスの新しいインスタンスを初期化します。

public BatchErrorException ();
Public Sub New ()

適用対象

BatchErrorException(String)

ソース:
BatchErrorException.cs

BatchErrorException クラスの新しいインスタンスを初期化します。

public BatchErrorException (string message);
new Microsoft.Azure.Batch.Protocol.Models.BatchErrorException : string -> Microsoft.Azure.Batch.Protocol.Models.BatchErrorException
Public Sub New (message As String)

パラメーター

message
String

例外メッセージです。

適用対象

BatchErrorException(String, Exception)

ソース:
BatchErrorException.cs

BatchErrorException クラスの新しいインスタンスを初期化します。

public BatchErrorException (string message, Exception innerException);
new Microsoft.Azure.Batch.Protocol.Models.BatchErrorException : string * Exception -> Microsoft.Azure.Batch.Protocol.Models.BatchErrorException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

例外メッセージです。

innerException
Exception

内部例外。

適用対象