RegistrationException コンストラクター

定義

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

オーバーロード

RegistrationException()

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

RegistrationException(String)

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

RegistrationException(String, Exception)

RegistrationException クラスの新しいインスタンスを、指定したエラー メッセージと入れ子になった例外を使用して初期化します。

RegistrationException()

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

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

適用対象

RegistrationException(String)

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

public:
 RegistrationException(System::String ^ msg);
public RegistrationException (string msg);
new System.EnterpriseServices.RegistrationException : string -> System.EnterpriseServices.RegistrationException
Public Sub New (msg As String)

パラメーター

msg
String

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

適用対象

RegistrationException(String, Exception)

RegistrationException クラスの新しいインスタンスを、指定したエラー メッセージと入れ子になった例外を使用して初期化します。

public:
 RegistrationException(System::String ^ msg, Exception ^ inner);
public RegistrationException (string msg, Exception inner);
new System.EnterpriseServices.RegistrationException : string * Exception -> System.EnterpriseServices.RegistrationException
Public Sub New (msg As String, inner As Exception)

パラメーター

msg
String

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

inner
Exception

入れ子になった例外。

適用対象