言語

ProblemSuppressionException コンストラクター

定義

オーバーロード

名前 説明
ProblemSuppressionException()

ProblemSuppressionException クラスの新しいインスタンスを構築します。

ProblemSuppressionException(String)

指定したエラー メッセージを使用して、 ProblemSuppressionException クラスの新しいインスタンスを構築します。

ProblemSuppressionException(String, Exception)

指定したエラー メッセージと、この例外の原因である内部例外への参照を使用して、 ProblemSuppressionException クラスの新しいインスタンスを構築します。

ProblemSuppressionException()

ProblemSuppressionException クラスの新しいインスタンスを構築します。

public ProblemSuppressionException();
Public Sub New ()

適用対象

ProblemSuppressionException(String)

指定したエラー メッセージを使用して、 ProblemSuppressionException クラスの新しいインスタンスを構築します。

public ProblemSuppressionException(string message);
new Microsoft.SqlServer.Dac.CodeAnalysis.ProblemSuppressionException : string -> Microsoft.SqlServer.Dac.CodeAnalysis.ProblemSuppressionException
Public Sub New (message As String)

パラメーター

message
String

適用対象

ProblemSuppressionException(String, Exception)

指定したエラー メッセージと、この例外の原因である内部例外への参照を使用して、 ProblemSuppressionException クラスの新しいインスタンスを構築します。

public ProblemSuppressionException(string message, Exception innerException);
new Microsoft.SqlServer.Dac.CodeAnalysis.ProblemSuppressionException : string * Exception -> Microsoft.SqlServer.Dac.CodeAnalysis.ProblemSuppressionException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

エラーを説明するメッセージ。

innerException
Exception

現在の例外の原因である例外。内部例外が指定されていない場合は null 参照。

適用対象