CRLException 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
| 名稱 | Description |
|---|---|
| CRLException() |
建立一個無詳細訊息的 CRLException。 |
| CRLException(Throwable) |
建立 |
| CRLException(String) |
建立包含指定細節訊息的 CRLException。 |
| CRLException(IntPtr, JniHandleOwnership) |
用於建立 JNI 物件受管理表示的建構器;由執行時呼叫。 |
| CRLException(String, Throwable) |
建立 |
CRLException()
建立一個無詳細訊息的 CRLException。
[Android.Runtime.Register(".ctor", "()V", "")]
public CRLException();
- 屬性
備註
建立一個無詳細訊息的 CRLException。 詳細訊息是描述此特定例外的字串。
的 java.security.cert.CRLException.CRLException()Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
CRLException(Throwable)
建立 CRLException 一個指定原因與 的 (cause==null ? null : cause.toString()) 詳細訊息(通常包含 的 cause類別與詳細訊息)。
[Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "")]
public CRLException(Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "")>]
new Java.Security.Cert.CRLException : Java.Lang.Throwable -> Java.Security.Cert.CRLException
參數
- cause
- Throwable
原因(該方法會保存以供日後檢索 #getCause() )。 (允許一個 null 值,表示原因不存在或未知。)
- 屬性
備註
建立 CRLException 一個指定原因與 的 (cause==null ? null : cause.toString()) 詳細訊息(通常包含 的 cause類別與詳細訊息)。
已在1.5中新增。
的 java.security.cert.CRLException.CRLException(java.lang.Throwable)Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
CRLException(String)
建立包含指定細節訊息的 CRLException。
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public CRLException(string? message);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.Security.Cert.CRLException : string -> Java.Security.Cert.CRLException
參數
- message
- String
細節訊息。
- 屬性
備註
建立包含指定細節訊息的 CRLException。 詳細訊息是描述此特定例外的字串。
的 java.security.cert.CRLException.CRLException(java.lang.String)Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
CRLException(IntPtr, JniHandleOwnership)
用於建立 JNI 物件受管理表示的建構器;由執行時呼叫。
protected CRLException(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Cert.CRLException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Cert.CRLException
參數
- transfer
- JniHandleOwnership
JniHandleOwnershipA 指示如何處理javaReference
備註
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
CRLException(String, Throwable)
建立 CRLException 包含指定細節訊息與原因的 a。
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "")]
public CRLException(string? message, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "")>]
new Java.Security.Cert.CRLException : string * Java.Lang.Throwable -> Java.Security.Cert.CRLException
參數
- message
- String
詳細訊息(該訊息會被方法保存以供日後檢索 #getMessage() )。
- cause
- Throwable
原因(該方法會保存以供日後檢索 #getCause() )。 (允許一個 null 值,表示原因不存在或未知。)
- 屬性
備註
建立 CRLException 包含指定細節訊息與原因的 a。
已在1.5中新增。
的 java.security.cert.CRLException.CRLException(java.lang.String, java.lang.Throwable)Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。