lib/grape/exceptions/unsupported_group_type.rb



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