Package com.ibm.di.fc.sapr3rfcv3
Class IfrImporterException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.di.fc.sapr3rfcv3.IfrImporterException
-
- All Implemented Interfaces:
java.io.Serializable
public class IfrImporterException extends java.lang.Exception
Exception type for SAP R/3 IFR XML Importer. Thrown by importer to indicate error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IfrImporterException(java.lang.String msg)
Construct exception with a context message.IfrImporterException(java.lang.String msg, java.lang.Throwable root)
Construct an exception of this type with a context message and lower level exception cause.IfrImporterException(java.lang.Throwable root)
Construct an exception of this type as result of another lower level exception.
-
-
-
Constructor Detail
-
IfrImporterException
public IfrImporterException(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.
-
IfrImporterException
public IfrImporterException(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.
-
IfrImporterException
public IfrImporterException(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.
-
-