# File lib/rgen/model_builder/builder_context.rb, line 214
    def resolvePackage(contextPackage, rootPackage, path)
      begin
        return resolvePackageDownwards(contextPackage, path)
      rescue PackageNotFoundException
        if contextPackage.eSuperPackage && contextPackage != rootPackage
          return resolvePackage(contextPackage.eSuperPackage, rootPackage, path)
        else
          raise
        end
      end
    end