in driver/src/main/scala/com/datastax/spark/connector/util/NameTools.scala [128:135]
def getErrorString(keyspace: String, table: Option[String], suggestion: Option[Suggestions]): String = suggestion match {
case None if table.isDefined => s"Couldn't find $keyspace.${table.get} or any similarly named keyspace and table pairs"
case None if table.isEmpty => s"Couldn't find $keyspace or any similarly named keyspaces"
case Some(TableSuggestions(tables)) => s"Couldn't find table ${table.get} in $keyspace - Found similar tables in that keyspace:\n${tables.map(t => s"$keyspace.$t").mkString("\n")}"
case Some(KeyspaceSuggestions(keyspaces)) => s"Couldn't find table ${table.get} in $keyspace - Found similar keyspaces with that table:\n${keyspaces.map(k => s"$k.$table").mkString("\n")}"
case Some(KeyspaceAndTableSuggestions(kt)) => s"Couldn't find table ${table.get} or keyspace $keyspace - Found similar keyspaces and tables:\n${kt.map { case (k, t) => s"$k.$t"}.mkString("\n")}"
case Some(KeyspaceOnlySuggestions(keyspaces)) => s"Couldn't find keyspace $keyspace - Found similar keyspaces: ${keyspaces.mkString("\n", "\n", "\n")}"
}