Class CcdManagementException
Represents an exception that occurs when communicating with the Unity CCD Management Service.
Namespace: Unity.Services.Ccd.Management
Syntax
public class CcdManagementException : RequestFailedException
Constructors
CcdManagementException(Exception)
Creates a CCDManagementException.
Declaration
public CcdManagementException(Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
Exception | innerException | The exception raised by the service, if any. |
CcdManagementException(Int32, String)
Creates a CCDManagementException.
Declaration
public CcdManagementException(int reason, string message)
Parameters
Type | Name | Description |
---|---|---|
Int32 | reason | The error code or the HTTP Status returned by the service. |
String | message | The description of the exception. |
CcdManagementException(Int32, String, Exception)
Creates a CCDManagementException.
Declaration
public CcdManagementException(int reason, string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
Int32 | reason | The error code or the HTTP Status returned by the service. |
String | message | The description of the exception. |
Exception | innerException | The exception raised by the service, if any. |