Class InvalidPatchException

The exception to report that a JSON Patch was invalid.

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

Constructors

InvalidPatchException(String)

Initializes a new InvalidPatchException instance.

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

The error message.

InvalidPatchException(String, Exception)

Initializes a new InvalidPatchException instance.

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

The error message.

Exception innerException

The inner exception.

Back to top