Fauna v10 .NET/C# Driver 1.0.1
 
Loading...
Searching...
No Matches
SerializationException.cs
Go to the documentation of this file.
1namespace Fauna.Exceptions;
2
6public class SerializationException : Exception
7{
12 public SerializationException(string? message) : base(message)
13 {
14 }
15
21 public SerializationException(string? message, Exception? innerException) : base(message, innerException)
22 {
23 }
24}
Represents error that occur during serialization and deserialization of Fauna data.
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 inn...