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