PeterO.Cbor.CBORException
## PeterO.Cbor.CBORException
public sealed class CBORException : System.Exception, System.Runtime.InteropServices._Exception, System.Runtime.Serialization.ISerializable
Exception thrown for errors involving CBOR data. This library may throw exceptions of this type in certain cases, notably when errors occur, and may supply messages to those exceptions (the message can be accessed through the Message
property in.NET or the getMessage()
method in Java). These messages are intended to be read by humans to help diagnose the error (or other cause of the exception); they are not intended to be parsed by computer programs, and the exact text of the messages may change at any time between versions of this library.
Member Summary
public CBORException( string message);
Initializes a new instance of the PeterO.Cbor.CBORException class.
Parameters:
- message: The parameter message is a text string.
public CBORException( string message, System.Exception innerException);
Initializes a new instance of the PeterO.Cbor.CBORException class. Uses the given message and inner exception.
Parameters:
-
message: The parameter message is a text string.
-
innerException: The parameter innerException is an Exception object.
public CBORException();
Initializes a new instance of the PeterO.Cbor.CBORException class.