Class MessageSerializerException
The exception that is thrown by the IMessageSerializer implementations when the message cannot be serialized or deserialized. This exception is thrown only when a Silverback specific error occurs, other exceptions related to reflection or the underlying serializer are not wrapped.
Implements
Inherited Members
Namespace: Silverback.Messaging.Serialization
Assembly: Silverback.Integration.dll
Syntax
[Serializable]
public class MessageSerializerException : SilverbackException, ISerializable
Constructors
| Improve this doc View sourceMessageSerializerException()
Initializes a new instance of the MessageSerializerException class.
Declaration
public MessageSerializerException()
MessageSerializerException(SerializationInfo, StreamingContext)
Initializes a new instance of the MessageSerializerException class with the serialized data.
Declaration
protected MessageSerializerException(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | The SerializationInfo that holds the serialized object data about the exception being thrown. |
StreamingContext | context | The StreamingContext that contains contextual information about the source or destination. |
MessageSerializerException(string)
Initializes a new instance of the MessageSerializerException class with the specified message.
Declaration
public MessageSerializerException(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message | The exception message. |
MessageSerializerException(string, Exception)
Initializes a new instance of the MessageSerializerException class with the specified message and inner exception.
Declaration
public MessageSerializerException(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
string | message | The exception message. |
Exception | innerException | The inner exception. |