Class AlphaVantageException
- Namespace
- Tudormobile.AlphaVantage
- Assembly
- Tudormobile.AlphaVantageAPI.dll
Represents errors that occur during Alpha Vantage API operations.
public class AlphaVantageException : Exception, ISerializable
- Inheritance
-
AlphaVantageException
- Implements
- Inherited Members
Remarks
This exception is thrown when API requests fail due to network issues, invalid responses, rate limiting, authentication failures, or other Alpha Vantage service-related errors. Check the inner exception for underlying HTTP or network errors.
Constructors
AlphaVantageException()
Initializes a new instance of the AlphaVantageException class.
public AlphaVantageException()
AlphaVantageException(string)
Initializes a new instance of the AlphaVantageException class with a specified error message.
public AlphaVantageException(string message)
Parameters
messagestringThe message that describes the error.
AlphaVantageException(string, Exception)
Initializes a new instance of the AlphaVantageException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public AlphaVantageException(string message, Exception inner)