Modifier and Type | Method and Description |
---|---|
void |
maybeThrowError()
Throws a fatal error, or a non-fatal error if loading is currently backed off and the current
Loader.Loadable has incurred a number of errors greater than the Loader s default
minimum number of retries. |
void |
maybeThrowError(int minRetryCount)
Throws a fatal error, or a non-fatal error if loading is currently backed off and the current
Loader.Loadable has incurred a number of errors greater than the specified minimum number
of retries. |
void maybeThrowError() throws IOException
Loader.Loadable
has incurred a number of errors greater than the Loader
s default
minimum number of retries. Else does nothing.IOException
- The error.void maybeThrowError(int minRetryCount) throws IOException
Loader.Loadable
has incurred a number of errors greater than the specified minimum number
of retries. Else does nothing.minRetryCount
- A minimum retry count that must be exceeded for a non-fatal error to be
thrown. Should be non-negative.IOException
- The error.