class Dependabot::Uv::PipCompileErrorHandler

def handle_pipcompile_error(error)

def handle_pipcompile_error(error)
  return unless error.match?(SUBPROCESS_ERROR) || error.match?(INSTALLATION_ERROR) ||
                error.match?(INSTALLATION_SUBPROCESS_ERROR) || error.match?(HASH_MISMATCH)
  raise DependencyFileNotResolvable, "Error resolving dependency"
end