ruby-grape/grape

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Grape
  module Exceptions
    class MissingVendorOption < Base
      def initialize
        super(message: compose_message(:missing_vendor_option))
      end
    end
  end
end