Sha256: 41f1a21f2095e9fbfc3b09978b3624d2ca3b56192e3c01283d0efdd4df092d36

Contents?: true

Size: 620 Bytes

Versions: 2

Compression:

Stored size: 620 Bytes

Contents

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

2 entries across 2 versions & 1 rubygems

Version Path
contrast-agent-4.6.0 lib/contrast/security_exception.rb
contrast-agent-4.5.0 lib/contrast/security_exception.rb