Package com.ibm.di.protocols.rxa
Class GeneralCLFCException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.di.protocols.rxa.GeneralCLFCException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ParamException,RemoteConnectException
public class GeneralCLFCException extends java.lang.ExceptionException type for the Remote Command Line Function Component- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GeneralCLFCException(MsgIds c, java.lang.String msg)Construct exception with a context message.GeneralCLFCException(MsgIds c, java.lang.String msg, java.lang.Throwable root)Construct an exception of this type with a context message and lower level exception cause.GeneralCLFCException(java.lang.String msg)Construct exception with a context message.GeneralCLFCException(java.lang.String msg, java.lang.Throwable root)Construct an exception of this type with a context message and lower level exception cause.GeneralCLFCException(java.lang.Throwable root)Construct an exception of this type as result of another lower level exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MsgIdsgetCode()Get the error code for this exception
-
-
-
Constructor Detail
-
GeneralCLFCException
public GeneralCLFCException(MsgIds c, java.lang.String msg)
Construct exception with a context message.- Parameters:
c- The RemoteCLFCErrorCode for this exceptionmsg- The message text.
-
GeneralCLFCException
public GeneralCLFCException(MsgIds c, java.lang.String msg, java.lang.Throwable root)
Construct an exception of this type with a context message and lower level exception cause.- Parameters:
c- The RemoteCLFCErrorCode for this exceptionmsg- The message text.root- The cause of the this exception.
-
GeneralCLFCException
public GeneralCLFCException(java.lang.String msg)
Construct exception with a context message.- Parameters:
msg- The message text.
-
GeneralCLFCException
public GeneralCLFCException(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.
-
GeneralCLFCException
public GeneralCLFCException(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.root- The cause of the this exception.
-
-
Method Detail
-
getCode
public MsgIds getCode()
Get the error code for this exception- Returns:
- RemoteCLFCErrorCode error
-
-