The paragraph object in the Word has a property called Range. Within this Range object has a property called Cells.
For paragraph that are not in a table, this prop
You can use the Information property:
If Selection.Information(wdWithInTable) Then 'What ever you'd like to do End If
Hence you don't need any manual error catching mechanisms.