class Semantic::Dependency::UnsatisfiableGraph

Attributes

graph[R]

Public Class Methods

new(graph) click to toggle source
# File lib/puppet/vendor/semantic/lib/semantic/dependency/unsatisfiable_graph.rb, line 8
def initialize(graph)
  @graph = graph

  deps = sentence_from_list(graph.modules)
  super "Could not find satisfying releases for #{deps}"
end