Table of Contents

Class SerializationException

Namespace
Solace.Serdes
Assembly
Solace.Serdes.dll

Exception raised when an error occurs during ISerializer<T> or IDeserializer<T> operations.

public class SerializationException : Exception, ISerializable
Inheritance
SerializationException
Implements
Inherited Members

Remarks

Constructors

SerializationException()

Initializes a new instance of the SerializationException class.

public SerializationException()

SerializationException(string)

Initializes a new instance of the SerializationException class with a specified error message.

public SerializationException(string message)

Parameters

message string

The message that describes the error.

SerializationException(string, Exception)

Initializes a new instance of the SerializationException class with a specified error message and cause.

public SerializationException(string message, Exception innerException)

Parameters

message string

The message that describes the error.

innerException Exception

The exception that is the cause of the current exception. A null value is permitted and indicates that the cause is nonexistent or unknown.

Remarks

Note that the detail message associated with innerException is not automatically incorporated in this exception's detail message.