Class FailedPatchException

The exception to report that applying a JSON Patch failed.

Inheritance
System.Object
SessionException
FailedPatchException
Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public class FailedPatchException : SessionException
Remarks

This can happen if the topic's current value is not valid CBOR. See ValidateValues.

Constructors

FailedPatchException(String)

Initializes a new FailedPatchException instance.

Declaration
public FailedPatchException(string message)
Parameters
Type Name Description
System.String message

The error message.

FailedPatchException(String, Exception)

Initializes a new FailedPatchException instance.

Declaration
public FailedPatchException(string message, Exception innerException)
Parameters
Type Name Description
System.String message

The error message.

Exception innerException

The inner exception.

Back to top