This Error is raised if positions are out of range.
[Source]
# File lib/position_range/error.rb, line 18 18: def initialize(from_range, to_range) 19: @from_range = from_range 20: @to_range = to_range 21: end
# File lib/position_range/error.rb, line 23 23: def message 24: super.to_s + ': ' + @from_range.to_s + ',' + @to_range.to_s 25: end
[Validate]