Exception: Solve::Errors::UnsortableSolutionError

Inherits:
SolveError
  • Object
show all
Defined in:
lib/solve/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(internal_exception, unsorted_solution) ⇒ UnsortableSolutionError

Returns a new instance of UnsortableSolutionError.



65
66
67
68
# File 'lib/solve/errors.rb', line 65

def initialize(internal_exception, unsorted_solution)
  @internal_exception = internal_exception
  @unsorted_solution  = unsorted_solution
end

Instance Attribute Details

#internal_exceptionObject (readonly)

Returns the value of attribute internal_exception.



62
63
64
# File 'lib/solve/errors.rb', line 62

def internal_exception
  @internal_exception
end

#unsorted_solutionObject (readonly)

Returns the value of attribute unsorted_solution.



63
64
65
# File 'lib/solve/errors.rb', line 63

def unsorted_solution
  @unsorted_solution
end

Instance Method Details

#to_sObject



70
71
72
# File 'lib/solve/errors.rb', line 70

def to_s
  "The solution contains a cycle and cannot be topologically sorted. See #unsorted_solution on this exception for the unsorted solution"
end