Class UnsupportedProtocolException
The exception that is thrown if the service does not support the
current driver protocol version.
Namespace: Oracle.NoSQL.SDK
Assembly: Oracle.NoSQL.SDK.dll
Syntax
public class UnsupportedProtocolException : NoSQLException
Remarks
This exception indicates that the service is running at a lower
protocol version than the driver (i.e. the driver is using a newer
protocol version than the service supports). The driver will attempt
to decrement its internal protocol version and retry the operation.
If the protocol version cannot be decremented, this exception will be
thrown. This exception is not retryable (it is only retried internally
and should not be retried by the retry handler).
Constructors
Name | Description |
---|---|
UnsupportedProtocolException() | Initializes a new instance of UnsupportedProtocolException. |
UnsupportedProtocolException(String) | Initializes a new instance of UnsupportedProtocolException with the message that describes the current exception. |
UnsupportedProtocolException(String, Exception) | Initializes a new instance of UnsupportedProtocolException with the message that describes the current exception and an inner exception. |