class Dependabot::ToolFeatureNotSupported

def build_message

def build_message
  "Dependabot doesn't support the feature '#{feature}' for #{tool_name} (#{tool_type}). " \
    "Please refer to the documentation for supported features."
end

def initialize(tool_name:, tool_type:, feature:)

def initialize(tool_name:, tool_type:, feature:)
  @tool_name = tool_name
  @tool_type = tool_type
  @feature = feature
  super(build_message)
end