class PiiSafeSchema::ConfigurationError

Constants

DD_CLIENT_MSG
IGNORE_MSG

Public Class Methods

new(problem) click to toggle source
Calls superclass method
# File lib/pii_safe_schema/configuration.rb, line 79
def initialize(problem)
  super(
    case problem
    when :ignore
      IGNORE_MSG
    when :datadog_client
      DD_CLIENT_MSG
    else
      problem
    end
  )
end