lib/grape/exceptions/invalid_formatter.rb in grape-0.14.0 vs lib/grape/exceptions/invalid_formatter.rb in grape-0.15.0
- old
+ new
@@ -1,10 +1,10 @@
# encoding: utf-8
module Grape
module Exceptions
class InvalidFormatter < Base
def initialize(klass, to_format)
- super(message: compose_message('invalid_formatter', klass: klass, to_format: to_format))
+ super(message: compose_message(:invalid_formatter, klass: klass, to_format: to_format))
end
end
end
end