At the moment, if you are doing a CSV import of cables and you make any error in any row specifying a non-existent interface/port, you get the following generic error:

I would like this to show either the device+port combination which could not be found, or the line number in the CSV with the error.
Bulk creation of cables via CSV, when there are too many to do one by one in the UI.
Workaround: do a binary chop - paste the first half of the CSV, if it fails past the first quarter etc.
None
None
I've run into this in the past, however I'm not able to replicate it on the current develop branch (v2.6.7). It's likely been resolved by other work. Going to close this out. If anyone does come across this in the future, please open a _new_ bug report with specific steps that will reproduce the bug.
It is very easy to reproduce in v2.6.7 (released version).
/dcim/cables/import/. Paste the following:side_a_device,side_a_type,side_a_name,side_b_device,side_b_type,side_b_name
nuc1,interface,BLAH,nuc2,interface,BLAH
where BLAH is intentionally a non-existent interface name.
Result:

UPDATE: maybe was fixed by 1d189483 ("Fixes #3709: Prevent exception when importing an invalid cable definition") which was committed after the release.
Confirm this is fixed in v2.6.8. Error message now shows:
Row 1 side_a_name: A side termination not found: nuc1 BLAH
Row 1 side_b_name: B side termination not found: nuc2 BLAH
Row 1 __all__: Termination A type has not been specified
Most helpful comment
Confirm this is fixed in v2.6.8. Error message now shows: