class ParamsReady::CoercionError

Public Class Methods

new(input, class_name) click to toggle source
Calls superclass method
# File lib/params_ready/error.rb, line 27
def initialize(input, class_name)
  super "can't coerce '#{input}' into #{class_name}"
end