共用方式為


CertStoreException 建構函式

定義

多載

CertStoreException()

CertStoreException建立 ,並null作為其詳細訊息。

CertStoreException(Throwable)

CertStoreException建立包裝指定之可擲回的 。

CertStoreException(String)

CertStoreException使用指定的詳細資料訊息建立 。

CertStoreException(IntPtr, JniHandleOwnership)

建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。

CertStoreException(String, Throwable)

CertStoreException使用指定的詳細資料訊息與原因建立 。

CertStoreException()

CertStoreException建立 ,並null作為其詳細訊息。

[Android.Runtime.Register(".ctor", "()V", "")]
public CertStoreException ();
屬性

備註

CertStoreException建立 ,並null作為其詳細訊息。

java.security.cert.CertStoreException.CertStoreException()Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於

CertStoreException(Throwable)

CertStoreException建立包裝指定之可擲回的 。

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

參數

cause
Throwable

原因(此方法稍後會儲存以供擷取 #getCause getCause() )。 (允許一個 null 值,並指出原因不存在或未知。

屬性

備註

CertStoreException建立包裝指定之可擲回的 。 這可讓任何例外狀況轉換成 CertStoreException,同時保留原因的相關信息,這可能有助於偵錯。 詳細數據訊息會設定為 (cause==null ? null : cause.toString()) (這通常包含原因的類別和詳細訊息)。

java.security.cert.CertStoreException.CertStoreException(java.lang.Throwable)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於

CertStoreException(String)

CertStoreException使用指定的詳細資料訊息建立 。

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

參數

msg
String

詳細資料訊息

屬性

備註

CertStoreException使用指定的詳細資料訊息建立 。 詳細訊息是 String 描述此特定例外狀況的 。

java.security.cert.CertStoreException.CertStoreException(java.lang.String)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於

CertStoreException(IntPtr, JniHandleOwnership)

建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。

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

參數

javaReference
IntPtr

nativeint

IntPtr,包含 Java Native Interface (JNI) 對象參考。

transfer
JniHandleOwnership

JniHandleOwnership,指出如何處理javaReference

備註

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於

CertStoreException(String, Throwable)

CertStoreException使用指定的詳細資料訊息與原因建立 。

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

參數

msg
String

詳細資料訊息

cause
Throwable

原因(此方法稍後會儲存以供擷取 #getCause getCause() )。 (允許一個 null 值,並指出原因不存在或未知。

屬性

備註

CertStoreException使用指定的詳細資料訊息與原因建立 。

java.security.cert.CertStoreException.CertStoreException(java.lang.String, java.lang.Throwable)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於