Package com.ibm.di.connector.sapr3.user
Class ConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.di.connector.sapr3.user.UserRegistryConnectorException
-
- com.ibm.di.connector.sapr3.user.ConfigurationException
-
- All Implemented Interfaces:
java.io.Serializable
public class ConfigurationException extends UserRegistryConnectorException
Exception type for SAP R/3 User Registry Connector. Thrown by connector to indicate user configuration error to be corrected.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigurationException(java.lang.String msg)
Construct exception with a context message.ConfigurationException(java.lang.String msg, java.lang.Throwable root)
Construct an exception of this type with a context message and lower level exception cause.ConfigurationException(java.lang.Throwable root)
Construct an exception of this type as result of another lower level exception.
-
-
-
Constructor Detail
-
ConfigurationException
public ConfigurationException(java.lang.String msg)
Construct exception with a context message.- Parameters:
msg
- The message text. This text should ideally be retrieved from an I18N message bundle.
-
ConfigurationException
public ConfigurationException(java.lang.Throwable root)
Construct an exception of this type as result of another lower level exception. The message of this exception will be adopted from the root exception.- Parameters:
root
- The cause of the this exception.
-
ConfigurationException
public ConfigurationException(java.lang.String msg, java.lang.Throwable root)
Construct an exception of this type with a context message and lower level exception cause.- Parameters:
msg
- The message text. This text should ideally be retrieved from an I18N message bundle.root
- The cause of the this exception.
-
-