Fauna v10 .NET/C# Driver 0.2.0-beta
 
Loading...
Searching...
No Matches
SerializationException.cs
Go to the documentation of this file.
1namespace Fauna.Serialization;
2
6public class SerializationException : Exception
7{
8 public SerializationException(string? message) : base(message)
9 {
10 }
11
12 public SerializationException(string? message, Exception? innerException) : base(message, innerException)
13 {
14 }
15}
Represents error that occur during serialization and deserialization of Fauna data.
SerializationException(string? message, Exception? innerException)