ruby-grape/grape

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Grape
  module Exceptions
    class InvalidWithOptionForRepresent < Base
      def initialize
        super(message: compose_message(:invalid_with_option_for_represent))
      end
    end
  end
end