Represents error that occur during serialization and deserialization of Fauna data. More...
Public Member Functions | |
SerializationException (string? message) | |
Initializes a new instance of the SerializationException class with a specified error message. | |
SerializationException (string? message, Exception? innerException) | |
Initializes a new instance of the SerializationException class with a specified error message and inner exception. | |
Represents error that occur during serialization and deserialization of Fauna data.
Definition at line 6 of file SerializationException.cs.
Fauna.Exceptions.SerializationException.SerializationException | ( | string? | message | ) |
Initializes a new instance of the SerializationException class with a specified error message.
message | The error message that explains the reason for the exception. |
Definition at line 12 of file SerializationException.cs.
Fauna.Exceptions.SerializationException.SerializationException | ( | string? | message, |
Exception? | innerException | ||
) |
Initializes a new instance of the SerializationException class with a specified error message and inner exception.
message | The error message that explains the reason for the exception. |
innerException | The inner exception. |
Definition at line 21 of file SerializationException.cs.