You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Represents errors that occur during API client operations.
9
+
/// </summary>
10
+
publicclassGenericAPIClientException:Exception
11
+
{
12
+
/// <summary>
13
+
/// Initializes a new instance of the <see cref="GenericAPIClientException"/> class.
14
+
/// </summary>
15
+
publicGenericAPIClientException()
16
+
:base()
17
+
{
18
+
19
+
}
20
+
21
+
/// <summary>
22
+
/// Initializes a new instance of the <see cref="GenericAPIClientException"/> class with a specified error message.
23
+
/// </summary>
24
+
/// <param name="message">The message that describes the error.</param>
25
+
publicGenericAPIClientException(Stringmessage)
26
+
:base(message)
27
+
{
28
+
29
+
}
30
+
31
+
/// <summary>
32
+
/// Initializes a new instance of the <see cref="GenericAPIClientException"/> class with a specified error message and a reference to the inner exception.
33
+
/// </summary>
34
+
/// <param name="message">The message that describes the error.</param>
35
+
/// <param name="innerException">The exception that is the cause of the current exception.</param>
0 commit comments