You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Sean Rohead (JIRA)" <ji...@apache.org> on 2014/08/06 16:03:12 UTC

[jira] [Updated] (FELIX-4602) TemporalServiceDependency does not properly propagate RuntimeExceptions

     [ https://issues.apache.org/jira/browse/FELIX-4602?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sean Rohead updated FELIX-4602:
-------------------------------

    Attachment: TemporalServiceDependencyImpl.java.patch

> TemporalServiceDependency does not properly propagate RuntimeExceptions
> -----------------------------------------------------------------------
>
>                 Key: FELIX-4602
>                 URL: https://issues.apache.org/jira/browse/FELIX-4602
>             Project: Felix
>          Issue Type: Bug
>          Components: Dependency Manager
>    Affects Versions: dependencymanager-3.2.0
>            Reporter: Sean Rohead
>              Labels: easyfix
>         Attachments: TemporalServiceDependencyImpl.java.patch
>
>
> I have a service that throws subclasses of RuntimeException from some of it's methods. When wrapped in a TemporalServiceDependency, these calls throw UndeclaredThrowableException instead.
> The fix is quite simple:
> Wrap TemporalServiceDependencyImpl lines 182-188 in the following try/catch block:
> try {
>     ...
> }
> catch (InvocationTargetException e) {
>     throw e.getTargetException();
> }



--
This message was sent by Atlassian JIRA
(v6.2#6252)