You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@aries.apache.org by "Hao Zhong (JIRA)" <ji...@apache.org> on 2017/03/22 04:33:41 UTC

[jira] [Created] (ARIES-1707) The BlueprintMetadata.getBlueprintContainer throws inconsistent exceptions

Hao Zhong created ARIES-1707:
--------------------------------

             Summary: The BlueprintMetadata.getBlueprintContainer throws inconsistent exceptions
                 Key: ARIES-1707
                 URL: https://issues.apache.org/jira/browse/ARIES-1707
             Project: Aries
          Issue Type: Bug
          Components: JMX
            Reporter: Hao Zhong


The BlueprintMetadata_getBlueprintContainer method throws IllegalArgumentException as follow:

{code:title=BlueprintMetadata.java|borderStyle=solid}
 if (serviceReferences == null || serviceReferences.length <1) {
            throw new IllegalArgumentException("Invalid BlueprintContainer service id: " + containerServiceId);
        }
{code}

However, the FrameworkUtils_resolveService method throws IOException for the same condition:
{code:title=FrameworkUtils.java|borderStyle=solid}
if (references == null || references.length < 1) {
                throw new IOException("Service with id [" + serviceId + "] not found");
            } else {
                result = references[0];
            }
{code}
This is confusing. Indeed, I notice that the buggy code of ARIES-333 throws IllegalArgumentException, but the fixed code throws IOException.
The current BlueprintMetadata.java shall be modified to eliminate the confusing.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)