class ActionDispatch::Request

def show_exceptions? # :nodoc:

:nodoc:
def show_exceptions? # :nodoc:
  # We're treating `nil` as "unset", and we want the default setting to be
  # `true`. This logic should be extracted to `env_config` and calculated
  # once.
  !(get_header("action_dispatch.show_exceptions") == false)
end