# FsChartError Represents an error code in the Charts API.   ##### Syntax ``` wasm enum FsChartError : unsigned char { FsChartError_None = 0, FsChartError_NotFound, FsChartError_UnknownProvider, FsChartError_NetworkError, FsChartError_InternalError, }; ```   ##### Members {{< table-wrapper >}} | Member | Description | |--------------------------------|---------------------------------------------------------------| | `FsChartError_None` | No error. | | `FsChartError_NotFound` | The requested chart GUID was not found. | | `FsChartError_UnknownProvider` | The requested chart provider was not found. | | `FsChartError_NetworkError` | A generic network error. This request can be retried. | | `FsChartError_InternalError` | A generic internal error. This request should not be retried. | {{< /table-wrapper >}}   ##### Remarks N/A