I don't see what would be difficult with negating the condition. How about
:
Code:
IF NOT ( <condition> ) THEN
-- do something
END IF;
Alternatively, you could put an empty BEGIN END block in the then-branch. But that is just cluttering the trigger and unprofessional bad practice (harder to maintain).