public FetchException recreateFetchException(FetchException e, String mime) {
return new FetchException(getFetchErrorCode(), e.expectedSize, this, mime);
}
public FetchException createFetchException(String mime, long expectedSize) {
return new FetchException(getFetchErrorCode(), expectedSize, this, mime);
}