Method: Humanized::FailedInterpolation#initialize
- Defined in:
- lib/humanized.rb
#initialize(exception, string, variables) ⇒ FailedInterpolation
Returns a new instance of FailedInterpolation.
33 34 35 36 37 38 |
# File 'lib/humanized.rb', line 33 def initialize(exception, string, variables) @exception = exception @string = string @variables = variables super(ERROR_STRING) end |