CertStoreException 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
CertStoreException() |
|
CertStoreException(Throwable) |
|
CertStoreException(String) |
|
CertStoreException(IntPtr, JniHandleOwnership) |
建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。 |
CertStoreException(String, Throwable) |
|
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
參數
- 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
使用指定的詳細資料訊息與原因建立 。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。