Fauna v10 .NET/C# Driver 0.2.0-beta
 
Loading...
Searching...
No Matches
FaunaException.cs
Go to the documentation of this file.
1using System.Net;
2
3namespace Fauna.Exceptions;
4
8public class FaunaException : Exception
9{
10 public FaunaException() { }
11
12 public FaunaException(string message) : base(message) { }
13
14 public FaunaException(string message, Exception innerException)
15 : base(message, innerException) { }
16}
17
Represents the base exception class for all exceptions specific to Fauna interactions.
FaunaException(string message, Exception innerException)