-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathInvalidGraphQLConfigurationException.cs
More file actions
33 lines (30 loc) · 1.12 KB
/
Copy pathInvalidGraphQLConfigurationException.cs
File metadata and controls
33 lines (30 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace Sitecore.AspNetCore.SDK.GraphQL.Exceptions;
/// <summary>
/// Details an exception that may occur during GraphQL configuration.
/// </summary>
public class InvalidGraphQLConfigurationException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="InvalidGraphQLConfigurationException"/> class.
/// </summary>
public InvalidGraphQLConfigurationException()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="InvalidGraphQLConfigurationException"/> class.
/// </summary>
/// <param name="message">The exception message.</param>
public InvalidGraphQLConfigurationException(string message)
: base(message)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="InvalidGraphQLConfigurationException"/> class.
/// </summary>
/// <param name="message">The exception message.</param>
/// <param name="innerException">The inner exception to be wrapped.</param>
public InvalidGraphQLConfigurationException(string message, Exception innerException)
: base(message, innerException)
{
}
}