DbException コンストラクター

定義

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

オーバーロード

DbException()

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

DbException(String)

指定されたエラー メッセージで DbException クラスの新しいインスタンスを初期化します。

DbException(SerializationInfo, StreamingContext)
古い.

指定したシリアル化情報とコンテキストを使用して、DbException クラスの新しいインスタンスを初期化します。

DbException(String, Exception)

指定されたエラー メッセージとこの例外の原因である内部例外に対する参照を持つ DbException クラスの新しいインスタンスを初期化します。

DbException(String, Int32)

指定したエラー メッセージおよびエラー コードを使用して、DbException クラスの新しいインスタンスを初期化します。

注釈

クラスは DbException 、プロバイダー固有の例外クラス実装の基底クラスとして使用される抽象クラスです。

DbException()

ソース:
DbException.cs
ソース:
DbException.cs
ソース:
DbException.cs

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

protected:
 DbException();
protected DbException ();
Protected Sub New ()

注釈

クラスは DbException 、プロバイダー固有の例外クラス実装の基底クラスとして使用される抽象クラスです。

こちらもご覧ください

適用対象

DbException(String)

ソース:
DbException.cs
ソース:
DbException.cs
ソース:
DbException.cs

指定されたエラー メッセージで DbException クラスの新しいインスタンスを初期化します。

protected:
 DbException(System::String ^ message);
protected DbException (string message);
protected DbException (string? message);
new System.Data.Common.DbException : string -> System.Data.Common.DbException
Protected Sub New (message As String)

パラメーター

message
String

この例外に表示されるメッセージ。

注釈

クラスは DbException 、プロバイダー固有の例外クラス実装の基底クラスとして使用される抽象クラスです。

こちらもご覧ください

適用対象

DbException(SerializationInfo, StreamingContext)

ソース:
DbException.cs
ソース:
DbException.cs
ソース:
DbException.cs

注意事項

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

指定したシリアル化情報とコンテキストを使用して、DbException クラスの新しいインスタンスを初期化します。

protected:
 DbException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected DbException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected DbException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.Common.DbException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.Common.DbException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.Data.Common.DbException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.Common.DbException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

パラメーター

info
SerializationInfo

スローされている例外に関するシリアル化済みオブジェクト データを保持している SerializationInfo

context
StreamingContext

転送元または転送先についてのコンテキスト情報を含む StreamingContext です。

属性

注釈

クラスは DbException 、プロバイダー固有の例外クラス実装の基底クラスとして使用される抽象クラスです。

こちらもご覧ください

適用対象

DbException(String, Exception)

ソース:
DbException.cs
ソース:
DbException.cs
ソース:
DbException.cs

指定されたエラー メッセージとこの例外の原因である内部例外に対する参照を持つ DbException クラスの新しいインスタンスを初期化します。

protected:
 DbException(System::String ^ message, Exception ^ innerException);
protected DbException (string message, Exception innerException);
protected DbException (string? message, Exception? innerException);
new System.Data.Common.DbException : string * Exception -> System.Data.Common.DbException
Protected Sub New (message As String, innerException As Exception)

パラメーター

message
String

エラー メッセージ文字列。

innerException
Exception

内部例外の参照。

注釈

クラスは DbException 、プロバイダー固有の例外クラス実装の基底クラスとして使用される抽象クラスです。

こちらもご覧ください

適用対象

DbException(String, Int32)

ソース:
DbException.cs
ソース:
DbException.cs
ソース:
DbException.cs

指定したエラー メッセージおよびエラー コードを使用して、DbException クラスの新しいインスタンスを初期化します。

protected:
 DbException(System::String ^ message, int errorCode);
protected DbException (string? message, int errorCode);
protected DbException (string message, int errorCode);
new System.Data.Common.DbException : string * int -> System.Data.Common.DbException
Protected Sub New (message As String, errorCode As Integer)

パラメーター

message
String

例外の原因を説明するエラー メッセージ。

errorCode
Int32

例外のエラー コード。

注釈

クラスは DbException 、プロバイダー固有の例外クラス実装の基底クラスとして使用される抽象クラスです。

こちらもご覧ください

適用対象