com.ibm.di.fc.sapr3rfc
Class SapRfcFunctionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.ibm.di.fc.sapr3rfc.SapRfcFunctionException
All Implemented Interfaces:
Serializable

public class SapRfcFunctionException
extends Exception

Exception type for SAP R/3 Function.

See Also:
Serialized Form

Constructor Summary
SapRfcFunctionException(String msg)
          Construct exception with a context message.
SapRfcFunctionException(String msg, Throwable root)
          Construct an exception of this type with a context message and lower level exception cause.
SapRfcFunctionException(Throwable root)
          Construct an exception of this type as result of another lower level exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SapRfcFunctionException

public SapRfcFunctionException(String msg)
Construct exception with a context message.

Parameters:
msg - The message text. This text should ideally be retrieved from an I18N message bundle.

SapRfcFunctionException

public SapRfcFunctionException(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.

SapRfcFunctionException

public SapRfcFunctionException(String msg,
                               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.