Class AbapException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.redwood.scheduler.api.connector.sap.rfc.scripting.RfcException
-
- com.redwood.scheduler.api.connector.sap.rfc.scripting.AbapException
-
- All Implemented Interfaces:
Serializable
public class AbapException extends RfcException
ABAP exception- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbapException(String functionName, String key, String msg)
AbapException(String functionName, String key, String[] importParams, Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFunctionModuleName()
Get the function module nameString
getKey()
Get the key of the ABAP exceptionString[]
getParameters()
Get import parameters of the function module-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
AbapException
public AbapException(String functionName, String key, String[] importParams, Throwable cause)
- Parameters:
functionName
- Name of the function module that caused this BAPI exceptionkey
- Key of the ABAP exceptionimportParams
- Import parameters of the function modulecause
-
-
-
Method Detail
-
getFunctionModuleName
public String getFunctionModuleName()
Get the function module name- Returns:
- name of the function module
-
getKey
public String getKey()
Get the key of the ABAP exception- Returns:
- key
-
getParameters
public String[] getParameters()
Get import parameters of the function module- Returns:
- array with the import parameters of the function module
-
-