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, bool)
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. |
bool | retryable | Whether the operation that threw the exception can be retried. |
RemoteException(Guid, RemoteError, string, bool)
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. |
bool | retryable | Whether the operation that threw the exception can be retried. |
RemoteException(Guid, RemoteError, Exception, bool)
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. |
bool | retryable | Whether the operation that threw the exception can be retried. |
RemoteException(Guid, RemoteError, string, Exception, string, bool)
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. |
bool | retryable | Whether the operation that threw the exception can be retried. |