Class NoSQLException
The base class for most exceptions thrown by the driver.
Inheritance
NoSQLException
Namespace: Oracle.NoSQL.SDK
Assembly: Oracle.NoSQL.SDK.dll
Syntax
public class NoSQLException : Exception
Remarks
All exception classes defined by the driver are subclasses of
NoSQLException. In addition to these exception classes
the driver may also throw standard exceptions such as
ArgumentException,
InvalidOperationException, etc. See relevant method
documentation for details. In addition, NoSQLException
itself may be thrown if the service responds with an unknown error.
Constructors
Name | Description |
---|---|
NoSQLException() | Initializes a new instance of NoSQLException. |
NoSQLException(String) | Initializes a new instance of NoSQLException with the message that describes the current exception. |
NoSQLException(String, Exception) | Initializes a new instance of NoSQLException with the message that describes the current exception and an inner exception. |
Properties
Name | Description |
---|---|
IsRetryable | Gets the value indicating whether the operation that has thrown this exception may be retried. |
Message | Gets the message that describes this exception. |
Request | Gets the Request object that describes the operation that caused the exception. |