Sha256: d74fdca93debbe2d0ec0140773a7fabd9a6fa6c39f9a09f0e57a2940cc3ac2e9
Contents?: true
Size: 620 Bytes
Versions: 25
Compression:
Stored size: 620 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 # A custom exception raised by our Protect rules in order to prevent # malicious user input from completing an attack. This Exception purposefully # extends StandardError and not SecurityError as StandardError is more likely # to be handled by our customer's applications. class SecurityException < StandardError def initialize rule, message = nil super(message || "Rule #{ rule.name } threw a security exception") end end end
Version data entries
25 entries across 25 versions & 1 rubygems