com.sun.identity.liberty.ws.authnsvc
クラス AuthnSvcException

java.lang.Object
  上位を拡張 java.lang.Throwable
      上位を拡張 java.lang.Exception
          上位を拡張 com.sun.identity.shared.locale.L10NMessageImpl
              上位を拡張 com.sun.identity.liberty.ws.authnsvc.AuthnSvcException

public class AuthnSvcException
extends com.sun.identity.shared.locale.L10NMessageImpl

This class is an extension point for all Authentication Service related exceptions.

関連項目:
直列化された形式

コンストラクタの概要
AuthnSvcException(String s)
          Create an AuthnSvcException with a message.
AuthnSvcException(String rbName, String errorCode, Object[] args)
          Constructs a new AuthnSvcException without a nested Throwable.
AuthnSvcException(Throwable t)
          Constructs with Throwable object.
 

コンストラクタの詳細

AuthnSvcException

public AuthnSvcException(String s)
Create an AuthnSvcException with a message.

パラメータ:
s - exception message.

AuthnSvcException

public AuthnSvcException(Throwable t)
Constructs with Throwable object.

パラメータ:
t - Throwable object

AuthnSvcException

public AuthnSvcException(String rbName,
                         String errorCode,
                         Object[] args)
Constructs a new AuthnSvcException without a nested Throwable.

パラメータ:
rbName - Resource Bundle Name to be used for getting localized error message.
errorCode - Key to resource bundle. You can use
 ResourceBundle rb = ResourceBunde.getBundle (rbName,locale);
 String localizedStr = rb.getString(errorCode);
 
args - arguments to message. If it is not present pass them as null