RemoteException Constructor
RemoteException()
Initializes a new instance of the HazelcastException class.
Declaration
public RemoteException()
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(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(RemoteError, Boolean)
Initializes a new instance of the HazelcastException class.
Declaration
public RemoteException(RemoteError error, bool retryable = false)
Parameters
RemoteError | error | The client protocol error. |
Boolean | retryable | Whether the operation that threw the exception can be retried. |
RemoteException(RemoteError, String, Boolean)
Initializes a new instance of the HazelcastException class with a specified error message.
Declaration
public RemoteException(RemoteError error, string message, bool retryable = false)
Parameters
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(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(RemoteError error, Exception innerException, bool retryable = false)
Parameters
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(RemoteError, String, Exception, 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(RemoteError error, string message, Exception innerException, bool retryable = false)
Parameters
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. |
Boolean | retryable | Whether the operation that threw the exception can be retried. |