com.sun.identity.liberty.ws.disco
クラス DiscoveryException

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

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

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

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

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

コンストラクタの詳細

DiscoveryException

public DiscoveryException(String s)
Creates an DiscoveryException with a message.

パラメータ:
s - exception message.

DiscoveryException

public DiscoveryException(Throwable t)
Constructs with Throwable object.

パラメータ:
t - Throwable object

DiscoveryException

public DiscoveryException(String rbName,
                          String errorCode,
                          Object[] args)
Constructs a new DiscoveryException 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