class I18n::UnsupportedMethod
Attributes
backend_klass[R]
method[R]
msg[R]
Public Class Methods
new(method, backend_klass, msg)
click to toggle source
Calls superclass method
# File lib/i18n/exceptions.rb, line 116 def initialize(method, backend_klass, msg) @method = method @backend_klass = backend_klass @msg = msg super "#{backend_klass} does not support the ##{method} method. #{msg}" end