Class RootUrlProviderException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.identity.shared.locale.L10NMessageImpl
org.forgerock.openam.federation.plugin.rooturl.RootUrlProviderException
All Implemented Interfaces:
com.sun.identity.shared.locale.L10NMessage, Serializable

public class RootUrlProviderException extends com.sun.identity.shared.locale.L10NMessageImpl
To be used when an exception has occurred in a root url provider.
See Also:
  • Constructor Details

    • RootUrlProviderException

      public RootUrlProviderException(String message)
      Constructs a RootUrlProviderException with a detailed message.
      Parameters:
      message - Detailed message for this exception.
    • RootUrlProviderException

      public RootUrlProviderException(Throwable rootCause)
      Constructs a RootUrlProviderException with an embedded exception.
      Parameters:
      rootCause - An embedded exception
    • RootUrlProviderException

      public RootUrlProviderException(Exception ex)
      Constructs a RootUrlProviderException with an exception.
      Parameters:
      ex - an exception
    • RootUrlProviderException

      public RootUrlProviderException(String rbName, String errorCode, Object[] args)
      Constructs a new RootUrlProviderException 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 = ResourceBundle.getBundle (rbName,locale);
       String localizedStr = rb.getString(errorCode);
       
      args - arguments to message. If it is not present pass them as null