# File lib/i18n/exceptions.rb, line 8
      def call(exception, locale, key, options)
        if exception.is_a?(MissingTranslationData)
          options[:rescue_format] == :html ? exception.html_message : exception.message
        else
          raise exception
        end
      end