Table of Contents

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

message string

The 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)

Parameters

message string

The error message that explains the reason for the exception.

inner Exception

The exception that is the cause of the current exception, or null if no inner exception is specified.