Represents an error code in the Charts API.

 

Syntax
enum FsChartError : unsigned char
{
    FsChartError_None = 0,
    FsChartError_NotFound,
    FsChartError_UnknownProvider,
    FsChartError_NetworkError,
    FsChartError_InternalError,
};

 

Members
MemberDescription
FsChartError_NoneNo error.
FsChartError_NotFoundThe requested chart GUID was not found.
FsChartError_UnknownProviderThe requested chart provider was not found.
FsChartError_NetworkErrorA generic network error. This request can be retried.
FsChartError_InternalErrorA generic internal error. This request should not be retried.

 

Remarks

N/A