Package com.ibm.di.protocols.rxa
Class RemoteConnectException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.di.protocols.rxa.GeneralCLFCException
-
- com.ibm.di.protocols.rxa.RemoteConnectException
-
- All Implemented Interfaces:
java.io.Serializable
public class RemoteConnectException extends GeneralCLFCException
A Remote Command Line Function Component Remote Connect Exception. Indicates that the connection could not be successfully established with the target.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RemoteConnectException(MsgIds c, java.lang.String msg)
Construct exception with a context message and the specified message ID.RemoteConnectException(MsgIds c, java.lang.String msg, java.lang.Throwable root)
Construct an exception of this type with a context message, lower level exception cause and specified message ID.RemoteConnectException(java.lang.String msg)
Construct exception with a context message.RemoteConnectException(java.lang.String msg, java.lang.Throwable root)
Construct an exception of this type with a context message and lower level exception cause.RemoteConnectException(java.lang.Throwable root)
Construct an exception of this type as result of another lower level exception.
-
Method Summary
-
Methods inherited from class com.ibm.di.protocols.rxa.GeneralCLFCException
getCode
-
-
-
-
Constructor Detail
-
RemoteConnectException
public RemoteConnectException(java.lang.String msg)
Construct exception with a context message.- Parameters:
msg
- The message text.
-
RemoteConnectException
public RemoteConnectException(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.
-
RemoteConnectException
public RemoteConnectException(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.
-
RemoteConnectException
public RemoteConnectException(MsgIds c, java.lang.String msg)
Construct exception with a context message and the specified message ID.- Parameters:
c
- RemoteCLFCMsgIds: Message IDmsg
- The message text.
-
RemoteConnectException
public RemoteConnectException(MsgIds c, java.lang.String msg, java.lang.Throwable root)
Construct an exception of this type with a context message, lower level exception cause and specified message ID.- Parameters:
c
- RemoteCLFCMsgIds: Message IDmsg
- The message text.root
- The cause of the this exception.
-
-