lib/grape/exceptions/unsupported_group_type.rb



# frozen_string_literal: true

module Grape
  module Exceptions
    class UnsupportedGroupTypeError < Base
      def initialize
        super(message: compose_message(:unsupported_group_type))
      end
    end
  end
end