Class RemotingException

    • Constructor Summary

      Constructors 
      Constructor Description
      RemotingException​(java.lang.String msg)
      Used by the Remote Server to construct a RemotingException with a supplied error message text.
      RemotingException​(java.lang.String msg, java.lang.Exception e)
      Used by the Remote Server to construct a RemotingException with a supplied error message text and cause 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

      • RemotingException

        public RemotingException​(@Nullable
                                 java.lang.String msg)
        Used by the Remote Server to construct a RemotingException with a supplied error message text.
        Parameters:
        msg - The detail message.
      • RemotingException

        public RemotingException​(@Nullable
                                 java.lang.String msg,
                                 @Nonnull
                                 java.lang.Exception e)
        Used by the Remote Server to construct a RemotingException with a supplied error message text and cause exception.
        Parameters:
        msg - The detail message.
        e - The cause.