class Cl::OutOfRange

Public Class Methods

new(opts) click to toggle source
Calls superclass method
# File lib/cl/errors.rb, line 82
def initialize(opts)
  opts = opts.map { |opt, opts| "#{opt} (#{opts.map { |pair| pair.join(': ') }.join(', ')})" }.join(', ')
  super(:out_of_range, opts)
end