Package com.apollographql.apollo3.exception
Types
Multiple exceptions happened. This happens typically when a CacheFirst request fails to fetch both the cache and the network. In that case, ApolloCompositeException is thrown, and you can access the underlying cache and network exceptions in suppressedExceptions.
The base class for all exceptions
Something went wrong but it's not sure exactly what
The response was received but the response code was not 200
A network error happened: socket closed, DNS issue, TLS problem, etc...
The response could not be parsed either because of another issue than JsonDataException or JsonEncodingException
A WebSocket connection could not be established: e.g., expired token
An object/field was missing in the cache If fieldName is null, it means a reference to an object could not be resolved
A HTTP cache miss happened
Thrown when the data in a JSON document doesn't match the data expected by the caller.
Thrown when the data being parsed is not encoded as valid JSON.
The server could not process a subscription and sent an error.