Class CBORException

The CBOR exception.

Inheritance
System.Object
CBORException
Namespace: PushTechnology.ClientInterface.IO.CBOR
Assembly: Diffusion.Client.dll
Syntax
public sealed class CBORException : IOException

Constructors

CBORException()

Creates a new CBORException.

Declaration
public CBORException()

CBORException(String)

Creates a new CBORException with a given error message.

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

The error message.

CBORException(String, Exception)

Creates a new CBORException with a given error message and inner exception.

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

The error message.

Exception innerException

The inner exception.

Back to top