GeneratorUserException コンストラクタ (String, Exception, Severity, ErrorType)
指定されたエラー メッセージ、重大度、エラーの種類、およびこの例外の原因である内部例外への参照を使用する GeneratorUserException クラスのインスタンスを初期化します。
名前空間 : Microsoft.Data.Schema.DataGenerator
アセンブリ : Microsoft.Data.Schema (Microsoft.Data.Schema.dll 内)
構文
'宣言
Public Sub New ( _
message As String, _
innerException As Exception, _
severity As Severity, _
errorType As ErrorType _
)
'使用
Dim message As String
Dim innerException As Exception
Dim severity As Severity
Dim errorType As ErrorType
Dim instance As New GeneratorUserException(message, _
innerException, severity, errorType)
public GeneratorUserException(
string message,
Exception innerException,
Severity severity,
ErrorType errorType
)
public:
GeneratorUserException(
String^ message,
Exception^ innerException,
Severity severity,
ErrorType errorType
)
public function GeneratorUserException(
message : String,
innerException : Exception,
severity : Severity,
errorType : ErrorType
)
パラメータ
- message
型 : System.String
String は、エラーを説明するメッセージです。
- innerException
型 : System.Exception
Exception は、現在の例外の原因である例外です。
- severity
型 : Microsoft.Data.Schema.DataGenerator.Severity
Severity は、重大度値を格納している列挙型です。
- errorType
型 : Microsoft.Data.Schema.DataGenerator.ErrorType
ErrorType は、エラーの種類の値を格納している列挙型です。
解説
有効な重大度は、Error、Warning、および Information です。
有効なエラーの種類は、Configuration、DataAccess、および Unknown です。
前回の例外の直接の結果としてスローされる例外の InnerException プロパティには、前回の例外への参照が含まれます。