All Downloads are FREE. Search and download functionalities are using the official Maven repository.

robotframework-2.7.7.atest.testresources.testlibs.Exceptions.py Maven / Gradle / Ivy

The newest version!
class FatalCatastrophyException(RuntimeError):
    ROBOT_EXIT_ON_FAILURE = True

class ContinuableApocalypseException(RuntimeError):
    ROBOT_CONTINUE_ON_FAILURE = True

def exit_on_failure():
    raise FatalCatastrophyException()

def raise_continuable_failure(msg='Can be continued'):
    raise ContinuableApocalypseException(msg)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy