Sha256: b8f60f7d392abbd9074a2cf1d4e9cf16743cd009640fc61ad36b5e36b6bc3bf6
Contents?: true
Size: 625 Bytes
Versions: 18
Compression:
Stored size: 625 Bytes
Contents
# Copyright (c) 2023 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.rule_name } threw a security exception") end end end
Version data entries
18 entries across 18 versions & 1 rubygems