Class NodeCommunicationException

  • All Implemented Interfaces:
    java.io.Serializable

    public class NodeCommunicationException
    extends java.lang.RuntimeException
    This exception is thrown when an error occurs during the communication between nodes.

    This can happen, for example, if the remote node is unreachable or takes too long to respond.

    Since:
    2.0.0
    See Also:
    Serialized Form
    • 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

      • NodeCommunicationException

        public NodeCommunicationException​(java.lang.String message)
        Parameters:
        message - The message to identify the exception context.
        Since:
        2.0.0
      • NodeCommunicationException

        public NodeCommunicationException​(java.lang.String message,
                                          java.lang.Throwable cause)
        Encapsulates a lower level external exception.
        Parameters:
        message - The message to identify the exception context.
        cause - The cause.
        Since:
        2.0.0