言語

CertPathValidatorException コンストラクター

定義

オーバーロード

名前 説明
CertPathValidatorException()

詳細メッセージを表示しない CertPathValidatorException を作成します。

CertPathValidatorException(Throwable)

指定したスロー可能なオブジェクトをラップする CertPathValidatorException を作成します。

CertPathValidatorException(String)

指定された詳細メッセージを含む CertPathValidatorException を作成します。

CertPathValidatorException(IntPtr, JniHandleOwnership)

JNI オブジェクトのマネージド表現を作成するときに使用されるコンストラクター。ランタイムによって呼び出されます。

CertPathValidatorException(String, Throwable)

指定した詳細メッセージと原因を含む CertPathValidatorException を作成します。

CertPathValidatorException(String, Throwable, CertPath, Int32)

指定した詳細メッセージ、原因、認定パス、およびインデックスを含む CertPathValidatorException を作成します。

CertPathValidatorException(String, Throwable, CertPath, Int32, CertPathValidatorException+IReason)

詳細メッセージを表示しない CertPathValidatorException を作成します。

CertPathValidatorException()

詳細メッセージを表示しない CertPathValidatorException を作成します。

[Android.Runtime.Register(".ctor", "()V", "")]
public CertPathValidatorException();
属性

注釈

詳細メッセージを表示しない CertPathValidatorException を作成します。

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象

CertPathValidatorException(Throwable)

指定したスロー可能なオブジェクトをラップする CertPathValidatorException を作成します。

[Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "")]
public CertPathValidatorException(Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "")>]
new Java.Security.Cert.CertPathValidatorException : Java.Lang.Throwable -> Java.Security.Cert.CertPathValidatorException

パラメーター

cause
Throwable

原因 ( #getCause getCause() メソッドによって後で取得するために保存されます)。 ( null 値が許可され、原因が存在しないか不明であることを示します)。

属性

注釈

指定したスロー可能なオブジェクトをラップする CertPathValidatorException を作成します。 これにより、ラップされた例外に関する情報を保持しながら、例外を CertPathValidatorExceptionに変換できます。これはデバッグに役立ちます。 詳細メッセージは (cause==null ? null : cause.toString()) に設定されます (通常は、原因のクラスと詳細メッセージが含まれます)。

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象

CertPathValidatorException(String)

指定された詳細メッセージを含む CertPathValidatorException を作成します。

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public CertPathValidatorException(string? msg);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.Security.Cert.CertPathValidatorException : string -> Java.Security.Cert.CertPathValidatorException

パラメーター

msg
String

詳細メッセージ

属性

注釈

指定された詳細メッセージを含む CertPathValidatorException を作成します。 詳細メッセージは、この特定の例外を説明する String です。

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象

CertPathValidatorException(IntPtr, JniHandleOwnership)

JNI オブジェクトのマネージド表現を作成するときに使用されるコンストラクター。ランタイムによって呼び出されます。

protected CertPathValidatorException(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Cert.CertPathValidatorException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Cert.CertPathValidatorException

パラメーター

javaReference
IntPtr

nativeint

Java ネイティブ インターフェイス (JNI) オブジェクト参照を含むIntPtr

transfer
JniHandleOwnership

JniHandleOwnership処理方法を示すjavaReference

注釈

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象

CertPathValidatorException(String, Throwable)

指定した詳細メッセージと原因を含む CertPathValidatorException を作成します。

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "")]
public CertPathValidatorException(string? msg, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "")>]
new Java.Security.Cert.CertPathValidatorException : string * Java.Lang.Throwable -> Java.Security.Cert.CertPathValidatorException

パラメーター

msg
String

詳細メッセージ

cause
Throwable

原因 ( #getCause getCause() メソッドによって後で取得するために保存されます)。 ( null 値が許可され、原因が存在しないか不明であることを示します)。

属性

注釈

指定した詳細メッセージと原因を含む CertPathValidatorException を作成します。

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象

CertPathValidatorException(String, Throwable, CertPath, Int32)

指定した詳細メッセージ、原因、認定パス、およびインデックスを含む CertPathValidatorException を作成します。

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;Ljava/security/cert/CertPath;I)V", "")]
public CertPathValidatorException(string? msg, Java.Lang.Throwable? cause, Java.Security.Cert.CertPath? certPath, int index);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;Ljava/security/cert/CertPath;I)V", "")>]
new Java.Security.Cert.CertPathValidatorException : string * Java.Lang.Throwable * Java.Security.Cert.CertPath * int -> Java.Security.Cert.CertPathValidatorException

パラメーター

msg
String

詳細メッセージ (または存在しない場合は null )

cause
Throwable

原因 (または存在しない場合は null )

certPath
CertPath

エラーが発生したときに検証中だった認定パス

index
Int32

エラーの原因となった証明書パス内の証明書のインデックス (該当しない場合は -1)。 CertPath内の証明書の一覧は 0 から始まる点に注意してください。

属性

例外

certPathnullで、インデックスが-1されていない場合。

certPathnullされておらず、インデックスが証明書パス内の証明書を参照していない場合。

注釈

指定した詳細メッセージ、原因、認定パス、およびインデックスを含む CertPathValidatorException を作成します。

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象

CertPathValidatorException(String, Throwable, CertPath, Int32, CertPathValidatorException+IReason)

詳細メッセージを表示しない CertPathValidatorException を作成します。

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;Ljava/security/cert/CertPath;ILjava/security/cert/CertPathValidatorException$Reason;)V", "", ApiSince=24)]
public CertPathValidatorException(string? msg, Java.Lang.Throwable? cause, Java.Security.Cert.CertPath? certPath, int index, Java.Security.Cert.CertPathValidatorException.IReason? reason);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;Ljava/security/cert/CertPath;ILjava/security/cert/CertPathValidatorException$Reason;)V", "", ApiSince=24)>]
new Java.Security.Cert.CertPathValidatorException : string * Java.Lang.Throwable * Java.Security.Cert.CertPath * int * Java.Security.Cert.CertPathValidatorException.IReason -> Java.Security.Cert.CertPathValidatorException

パラメーター

msg
String
cause
Throwable
certPath
CertPath
index
Int32
属性

注釈

Javaドキュメント。

このページの一部は、によって作成および共有され、に記載されている条件に従って使用される作業に基づく変更です。

適用対象