class I18n::UnsupportedMethod

def initialize(method, backend_klass, msg)

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