summaryrefslogtreecommitdiff
path: root/lib/rack/bad_request.rb
blob: 8eaa94e671dc63480ea643a0547da1906b5092c4 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module Rack
  # Represents a 400 Bad Request error when input data fails to meet the
  # requirements.
  module BadRequest
  end
end