Class OciException
Assembly: OCI.DotNetSDK.Common.dll
Syntax
public class OciException : Exception, ISerializable
Constructors
OciException(HttpStatusCode, string, string, Exception)
Declaration
public OciException(HttpStatusCode statusCode, string message, string opcRequestId, Exception innerException)
Parameters
OciException(HttpStatusCode, string, string, string)
Declaration
public OciException(HttpStatusCode statusCode, string message, string serviceCode, string opcRequestId)
Parameters
OciException(HttpStatusCode, string, string, string, ApiDetails)
Declaration
public OciException(HttpStatusCode statusCode, string message, string serviceCode, string opcRequestId, ApiDetails apiDetails)
Parameters
OciException(HttpStatusCode, string, string, string, Exception)
Declaration
public OciException(HttpStatusCode statusCode, string message, string serviceCode, string opcRequestId, Exception innerException)
Parameters
OciException(string, Exception)
Declaration
public OciException(string message, Exception innerException)
Parameters
OciException(string, string, string, Exception)
Declaration
public OciException(string message, string serviceCode, string opcRequestId, Exception innerException)
Parameters
Properties
ApiDetails
The Api Deatils for the operation being currently used.
Declaration
public ApiDetails ApiDetails { get; }
Property Value
OpcRequestId
The opc-request-id header returned by the service that should be provided for support requests.
Declaration
public string OpcRequestId { get; }
Property Value
ServiceCode
Service specific code returned. Null if the client timed out or failed to get a response from the service.
Declaration
public string ServiceCode { get; }
Property Value
StatusCode
Declaration
public HttpStatusCode StatusCode { get; }
Property Value
Methods
ToString()
Declaration
public override string ToString()
Returns
Overrides
Implements