Parent

Methods

DepSelector::Exceptions::NoSolutionExists

This exception is what the client of dep_selector should catch. It contains the solution constraint that introduces unsatisfiability, as well as the set of packages that are required to be disabled due to

Attributes

disabled_most_constrained_packages[R]
disabled_non_existent_packages[R]
message[R]
unsatisfiable_solution_constraint[R]

Public Class Methods

new(message, unsatisfiable_solution_constraint, disabled_non_existent_packages = [], disabled_most_constrained_packages = []) click to toggle source
# File lib/dep_selector/exceptions.rb, line 31
def initialize(message, unsatisfiable_solution_constraint,
               disabled_non_existent_packages = [],
               disabled_most_constrained_packages = [])
  @message = message
  @unsatisfiable_solution_constraint = unsatisfiable_solution_constraint
  @disabled_non_existent_packages = disabled_non_existent_packages
  @disabled_most_constrained_packages = disabled_most_constrained_packages
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.