Class RemoteTransportException

All Implemented Interfaces:
Serializable

public class RemoteTransportException extends NoSQLException
Thrown when the service reports a server-side FaultException that appears to have originated from a remote networking/transport failure between service components.

This exception is intentionally not retried by the Java SDK's internal retry handler. Application code may choose to retry, using the following guidance:

  • Idempotent operations: it is generally safe to retry.
  • Non-idempotent operations: first perform a read to determine whether the operation may have already succeeded, and then retry only if necessary.
See Also:
  • Constructor Details

    • RemoteTransportException

      public RemoteTransportException(String msg)
    • RemoteTransportException

      public RemoteTransportException(String msg, Throwable cause)