Try EXCEPT - daniel-qa/RobotFramework GitHub Wiki

Try Except

*** Settings ***
Documentation     Robot Framework 5 syntax examples.

*** Test Cases ***
TRY / EXCEPT: Catch any exception
    TRY
        Fail
    EXCEPT
        Log    EXCEPT with no arguments catches any exception.
    END