add more debug info to uncategorized exceptions

This commit is contained in:
Andreas Schildbach 2012-06-15 10:52:59 +02:00
parent c6c6b2c037
commit 359aae5a83

View file

@ -1695,6 +1695,10 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
{
throw new ParserException(x);
}
catch (final RuntimeException x)
{
throw new RuntimeException("uncategorized problem while processing " + uri, x);
}
finally
{
if (is != null)
@ -1736,6 +1740,10 @@ public abstract class AbstractEfaProvider extends AbstractNetworkProvider
throw x;
}
catch (final RuntimeException x)
{
throw new RuntimeException("uncategorized problem while processing " + uri, x);
}
finally
{
if (is != null)