Search notes:
ORA-00980: synonym translation is no longer valid
A synonym can be created to an object that doesn't (yet) exist:
create synonym tq84_x for unobtainium;
However, using such a synonym throws ORA-00980: synonym translation is no longer valid:
select * from tq84_x;
Cleaning up
drop synonym tq84_x;