Fauna v10 .NET/C# Driver 1.0.0
 
Loading...
Searching...
No Matches
ConstraintFailureException.cs
Go to the documentation of this file.
1using Fauna.Core;
2using Fauna.Mapping;
3
4namespace Fauna.Exceptions;
5
11{
16
22 public ConstraintFailureException(string message, QueryFailure failure)
23 : base(message, failure)
24 {
26 }
27}
Represents a failed query response.
ConstraintFailure?[] ConstraintFailures
The constraint failures, if any. Only present for the constraint_failure error code.
Represents an exception that occurs when constraints are violated in a query. This exception captures...
ConstraintFailure?[] ConstraintFailures
The constraint failures related to the exception.
ConstraintFailureException(string message, QueryFailure failure)
Initializes a new instance of the ConstraintFailureException class with a specified error message and...
A class representing a constraint failure from Fauna.
Represents an exception related to Fauna service errors, particularly for query failures.