Class ApiException
Assembly: Algorand.dll
Syntax
public class ApiException : Exception, ISerializable
Constructors
|
Edit this page
View Source
ApiException(string, int, string, IReadOnlyDictionary<string, IEnumerable<string>>, Exception)
Declaration
public ApiException(string message, int statusCode, string response, IReadOnlyDictionary<string, IEnumerable<string>> headers, Exception innerException)
Parameters
Properties
|
Edit this page
View Source
Headers
Declaration
public IReadOnlyDictionary<string, IEnumerable<string>> Headers { get; }
Property Value
|
Edit this page
View Source
Response
Declaration
public string Response { get; }
Property Value
|
Edit this page
View Source
StatusCode
Declaration
public int StatusCode { get; }
Property Value
Methods
|
Edit this page
View Source
ToString()
Creates and returns a string representation of the current exception.
Declaration
public override string ToString()
Returns
| Type |
Description |
| string |
A string representation of the current exception.
|
Overrides
Implements