com.sun.identity.liberty.ws.disco
Class DiscoveryException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.sun.identity.shared.locale.L10NMessageImpl
              extended by 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.

See Also:
Serialized Form

Constructor Summary
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.
 

Constructor Detail

DiscoveryException

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

Parameters:
s - exception message.

DiscoveryException

public DiscoveryException(Throwable t)
Constructs with Throwable object.

Parameters:
t - Throwable object

DiscoveryException

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

Parameters:
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