method

show_exceptions?

show_exceptions?()
public

No documentation available.

# File actionpack/lib/action_dispatch/http/request.rb, line 172
    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