Bug 849589 - Rethrow intermittent NativeZip exception with more debugging info. r=glandium

This commit is contained in:
Chris Peterson 2013-05-25 12:03:42 -07:00
Родитель da8160aea6
Коммит 0fc81ddef8
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -110,8 +110,9 @@ public final class GeckoJarReader {
try {
zip = new NativeZip(inputStream);
} catch (IllegalArgumentException e) {
Log.e(LOGTAG, "!!! BUG 849589 !!! origUrl=" + origUrl, e);
return null;
String description = "!!! BUG 849589 !!! origUrl=" + origUrl;
Log.e(LOGTAG, description, e);
throw new IllegalArgumentException(description);
}
}