I would think a 2 step process would do it.
The first would be to update the expiration dates of all the records that can be updated:
update a
set expiration_date = (select min(effective_date)
from b
where a.rtclas = b.rtclas and
a.rtrind = b.rtrind and
b.effective_date > a.effective_date);
The second would be to update the "last" records, which would be the remaining ones:
update
set expiration_date = to_date('12312078','mmddyyyy')
where expiration_date is null;