# Copyright (c) 2022 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