Container.RefreshFailure
Stay organized with collections
Save and categorize content based on your preferences.
Page Summary
Container.RefreshFailure is an enum that defines the ways in which refreshing a container can fail.
Possible refresh failures include I/O errors, network errors, lack of network connectivity, absence of a saved container, server errors, and unknown errors.
public static final enum
Container.RefreshFailure
Ways in which a refresh can fail.
Enum Values
public
static
final
Container.RefreshFailure
IO_ERROR
An I/O error prevented refreshing the container.
public
static
final
Container.RefreshFailure
NETWORK_ERROR
A network error has occurred.
public
static
final
Container.RefreshFailure
NO_NETWORK
No network is available.
public
static
final
Container.RefreshFailure
NO_SAVED_CONTAINER
There is no saved container.
public
static
final
Container.RefreshFailure
SERVER_ERROR
An error on the server.
public
static
final
Container.RefreshFailure
UNKNOWN_ERROR
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[],["The `Container.RefreshFailure` enum defines the reasons why a container refresh might fail. Possible failures include `IO_ERROR` (I/O error), `NETWORK_ERROR` (network error), `NO_NETWORK` (no network available), `NO_SAVED_CONTAINER` (no saved container), `SERVER_ERROR` (server error), and `UNKNOWN_ERROR` (uncategorized error). These values represent specific error conditions encountered during the container refresh process, providing detailed reasons for the failure.\n"]]