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:01:27 UTC

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

Sean Rohead created FELIX-4602:
----------------------------------

             Summary: 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


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)