mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-17 06:09:57 +00:00
add more debug info to uncategorized exceptions
This commit is contained in:
parent
c6c6b2c037
commit
359aae5a83
1 changed files with 8 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue