Package com.ibm.di.connector.sapr3.bor
Class SapR3ConnectorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.di.connector.sapr3.bor.SapR3ConnectorException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ConfigurationException
,ConnectorMethodException
,EmptyTransformResultException
,FunctionExecutionException
,RfcFunctionFactoryException
public class SapR3ConnectorException extends java.lang.Exception
Base exception type for SAP R/3 Connector. IBM Tivoli Directory Integrator assembly lines should expect to handle this type.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SapR3ConnectorException(java.lang.String msg)
Construct exception with a context message.SapR3ConnectorException(java.lang.String msg, java.lang.Throwable root)
Construct an exception of this type with a context message and lower level exception cause.SapR3ConnectorException(java.lang.Throwable root)
Construct an exception of this type as result of another lower level exception.
-
-
-
Constructor Detail
-
SapR3ConnectorException
public SapR3ConnectorException(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.
-
SapR3ConnectorException
public SapR3ConnectorException(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.
-
SapR3ConnectorException
public SapR3ConnectorException(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.
-
-