Class 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 java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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

      • 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 ID
        msg - 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 ID
        msg - The message text.
        root - The cause of the this exception.