.NET Client Documentation
5.1.1
Search Results for

    Show / Hide Table of Contents

    RemoteException Constructor

    RemoteException()

    Initializes a new instance of the HazelcastException class.

    Declaration
    public RemoteException()

    RemoteException(Guid)

    Initializes a new instance of the HazelcastException class.

    Declaration
    public RemoteException(Guid memberId)
    Parameters
    Guid memberId

    The unique identifier of the member that threw the exception.

    RemoteException(String)

    Initializes a new instance of the HazelcastException class.

    Declaration
    public RemoteException(string message)
    Parameters
    String message

    The message that describes the error.

    RemoteException(Guid, String)

    Initializes a new instance of the HazelcastException class.

    Declaration
    public RemoteException(Guid memberId, string message)
    Parameters
    Guid memberId

    The unique identifier of the member that threw the exception.

    String message

    The message that describes the error.

    RemoteException(String, Exception)

    Initializes a new instance of the HazelcastException class.

    Declaration
    public RemoteException(string message, Exception innerException)
    Parameters
    String message

    The message that describes the error.

    Exception innerException

    The exception that is the cause of the current exception.

    RemoteException(Guid, String, Exception)

    Initializes a new instance of the HazelcastException class.

    Declaration
    public RemoteException(Guid memberId, string message, Exception innerException)
    Parameters
    Guid memberId

    The unique identifier of the member that threw the exception.

    String message

    The message that describes the error.

    Exception innerException

    The exception that is the cause of the current exception.

    RemoteException(Guid, RemoteError, Boolean)

    Initializes a new instance of the HazelcastException class.

    Declaration
    public RemoteException(Guid memberId, RemoteError error, bool retryable = false)
    Parameters
    Guid memberId

    The unique identifier of the member that threw the exception.

    RemoteError error

    The client protocol error.

    Boolean retryable

    Whether the operation that threw the exception can be retried.

    RemoteException(Guid, RemoteError, String, Boolean)

    Initializes a new instance of the HazelcastException class with a specified error message.

    Declaration
    public RemoteException(Guid memberId, RemoteError error, string message, bool retryable = false)
    Parameters
    Guid memberId

    The unique identifier of the member that threw the exception.

    RemoteError error

    The client protocol error.

    String message

    The message that describes the error.

    Boolean retryable

    Whether the operation that threw the exception can be retried.

    RemoteException(Guid, RemoteError, Exception, Boolean)

    Initializes a new instance of the HazelcastException class with a reference to the inner exception that is the cause of this exception.

    Declaration
    public RemoteException(Guid memberId, RemoteError error, Exception innerException, bool retryable = false)
    Parameters
    Guid memberId

    The unique identifier of the member that threw the exception.

    RemoteError error

    The client protocol error.

    Exception innerException

    The exception that is the cause of the current exception, or a null reference if no inner exception is specified.

    Boolean retryable

    Whether the operation that threw the exception can be retried.

    RemoteException(Guid, RemoteError, String, Exception, String, Boolean)

    Initializes a new instance of the HazelcastException class with a specified error message and a reference to the inner exception that is the cause of this exception.

    Declaration
    public RemoteException(Guid memberId, RemoteError error, string message, Exception innerException, string serverStackTrace = "", bool retryable = false)
    Parameters
    Guid memberId

    The unique identifier of the member that threw the exception.

    RemoteError error

    The client protocol error.

    String message

    The message that describes the error.

    Exception innerException

    The exception that is the cause of the current exception, or a null reference if no inner exception is specified.

    String serverStackTrace

    A string representation of the frames on the server call stack.

    Boolean retryable

    Whether the operation that threw the exception can be retried.

    In This Article
    Back to top Copyright © 2010-2022 Hazelcast, Inc. All rights reserved.
    Generated by DocFX.