ruby-grape/grape

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Grape
  module Exceptions
    class ValidationArrayErrors < Base
      attr_reader :errors

      def initialize(errors)
        @errors = errors
      end
    end
  end
end