public class AuthenticationException extends SaslException
AuthenticationException がスローされなくても、障害が認証エラーによるものである場合があるので注意してください。SASL メカニズムの実装では、障害の性質を特定できない場合や、セキュリティー上の理由などにより、障害の性質を明らかにしたくない場合は、AuthenticationException ではなく、より一般的な SaslException をスローすることがあります。
コンストラクタと説明 |
---|
AuthenticationException()
AuthenticationException の新しいインスタンスを構築します。
|
AuthenticationException(String detail)
詳細メッセージを含む AuthenticationException の新しいインスタンスを構築します。
|
AuthenticationException(String detail, Throwable ex)
詳細メッセージとルート例外を含む AuthenticationException の新しいインスタンスを構築します。
|
getCause, initCause, toString
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
public AuthenticationException()
public AuthenticationException(String detail)
detail
- この例外に関する詳細情報を含む文字列。null の場合もある。Throwable.getMessage()
public AuthenticationException(String detail, Throwable ex)
detail
- この例外に関する詳細情報を含む文字列。null の場合もある。ex
- この例外がスローされる原因となったルート例外。null の場合もある。Throwable.getMessage()
, SaslException.getCause()
バグまたは機能を送信
詳細な API リファレンスおよび開発者ドキュメントについては、Java SE のドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.