Sha256: d2a545f9bc9db393faa1a768bac9b83c770855ec056a9cffe982efa0bde8b936
Contents?: true
Size: 667 Bytes
Versions: 25
Compression:
Stored size: 667 Bytes
Contents
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Config # Common Configuration settings. Those in this section pertain to the # exception handling in Ruby, allowing for the override of Response Code # and Message when Security Exceptions are raised. class ExceptionConfiguration < BaseConfiguration KEYS = { capture: EMPTY_VALUE, override_status: EMPTY_VALUE, override_message: EMPTY_VALUE }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end
Version data entries
25 entries across 25 versions & 1 rubygems