public class SSLException extends IOException
コンストラクタと説明 |
---|
SSLException(String reason)
SSL サブシステムで検出されたエラーを報告する例外を作成します。
|
SSLException(String message, Throwable cause)
指定した詳細メッセージと原因を持つ
SSLException を作成します。 |
SSLException(Throwable cause)
指定された原因と詳細メッセージ (cause==null ? null : cause.toString()) を持つ
SSLException を作成します (通常、cause のクラスと詳細メッセージを含みます)。 |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public SSLException(String reason)
reason
- 問題を説明する。public SSLException(String message, Throwable cause)
SSLException
を作成します。message
- 詳細メッセージ (あとで Throwable.getMessage()
メソッドで取得できるように保存される)。cause
- 原因 (あとで Throwable.getCause()
メソッドで取得できるように保存される)。(null 値が許可されており、原因が存在しないか不明であることを示す)public SSLException(Throwable cause)
SSLException
を作成します (通常、cause のクラスと詳細メッセージを含みます)。cause
- 原因 (あとで Throwable.getCause()
メソッドで取得できるように保存される)。(null 値が許可されており、原因が存在しないか不明であることを示す) バグまたは機能を送信
詳細な API リファレンスおよび開発者ドキュメントについては、Java SE のドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.