次の方法で共有


HttpUnhandledException コンストラクター

定義

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

オーバーロード

HttpUnhandledException()

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

HttpUnhandledException(String)

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

HttpUnhandledException(String, Exception)

指定したエラー メッセージと内部例外を使用して、HttpUnhandledException クラスの新しいインスタンスを初期化します。

HttpUnhandledException()

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

public:
 HttpUnhandledException();
public HttpUnhandledException ();
Public Sub New ()

適用対象

HttpUnhandledException(String)

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

public:
 HttpUnhandledException(System::String ^ message);
public HttpUnhandledException (string message);
new System.Web.HttpUnhandledException : string -> System.Web.HttpUnhandledException
Public Sub New (message As String)

パラメーター

message
String

例外がスローされた時点でクライアントに表示されるメッセージ。

適用対象

HttpUnhandledException(String, Exception)

指定したエラー メッセージと内部例外を使用して、HttpUnhandledException クラスの新しいインスタンスを初期化します。

public:
 HttpUnhandledException(System::String ^ message, Exception ^ innerException);
public HttpUnhandledException (string message, Exception innerException);
new System.Web.HttpUnhandledException : string * Exception -> System.Web.HttpUnhandledException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

例外がスローされた時点でクライアントに表示されるメッセージ。

innerException
Exception

現在の例外をスローした InnerException (存在する場合)。

適用対象