deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/property/query/PropertyQuery.java [107:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (results.size() == 1)
        {
            return results.get(0);
        }
        else if (results.isEmpty())
        {
            throw new RuntimeException("Expected one property match, but the criteria did not match any properties on "
                    + targetClass.getName());
        }
        else
        {
            throw new RuntimeException("Expected one property match, but the criteria matched " + results.size()
                    + " properties on " + targetClass.getName());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



deltaspike/modules/data/impl/src/main/java/org/apache/deltaspike/data/impl/property/query/PropertyQuery.java [134:146]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if (results.size() == 1)
        {
            return results.get(0);
        }
        else if (results.isEmpty())
        {
            throw new RuntimeException("Expected one property match, but the criteria did not match any properties on "
                    + targetClass.getName());
        }
        else
        {
            throw new RuntimeException("Expected one property match, but the criteria matched " + results.size()
                    + " properties on " + targetClass.getName());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



