ruby-grape/grape

View on GitHub
lib/grape/exceptions/unknown_options.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Grape
  module Exceptions
    class UnknownOptions < Base
      def initialize(options)
        super(message: compose_message(:unknown_options, options: options))
      end
    end
  end
end