pysys.exceptions module

Defines custom exceptions that can be thrown within the PySys framework.

exception pysys.exceptions.AbortExecution(outcome, outcomeReason, callRecord=None)[source]

Bases: Exception

Raised to abort execution of a test.

__init__(outcome, outcomeReason, callRecord=None)[source]

Initialize self. See help(type(self)) for accurate signature.

exception pysys.exceptions.ExecutableNotFoundException(value)[source]

Bases: Exception

Exception raised when an executable cannot be found.

__init__(value)[source]

Initialize self. See help(type(self)) for accurate signature.

exception pysys.exceptions.FileNotFoundException(value)[source]

Bases: Exception

Exception raised when a file cannot be found.

__init__(value)[source]

Initialize self. See help(type(self)) for accurate signature.

exception pysys.exceptions.IncorrectFileTypeException(value)[source]

Bases: Exception

Exception raised when the extension of a file is incorrect.

__init__(value)[source]

Initialize self. See help(type(self)) for accurate signature.

exception pysys.exceptions.InvalidDescriptorException(value)[source]

Bases: Exception

Exception raised when a testcase descriptor is invalid.

__init__(value)[source]

Initialize self. See help(type(self)) for accurate signature.

exception pysys.exceptions.InvalidXMLException(value)[source]

Bases: Exception

Exception raised when an input XML file is invalid.

__init__(value)[source]

Initialize self. See help(type(self)) for accurate signature.

exception pysys.exceptions.ProcessError(value)[source]

Bases: Exception

Exception raised when creating a process.

__init__(value)[source]

Initialize self. See help(type(self)) for accurate signature.

exception pysys.exceptions.ProcessTimeout(value)[source]

Bases: Exception

Exception raised when a process times out.

__init__(value)[source]

Initialize self. See help(type(self)) for accurate signature.