Classes | |
| class | _ErrorDetails |
| class | JavaErrorDetails |
| class | PythonErrorDetails |
Functions | |
| def | ErrorDetails (exc_info=None, exclude_robot_traces=EXCLUDE_ROBOT_TRACES) |
| This factory returns an object that wraps the last occurred exception. More... | |
| def | get_error_details (exclude_robot_traces=EXCLUDE_ROBOT_TRACES) |
| Returns error message and details of the last occurred exception. More... | |
| def | get_error_message () |
| Returns error message of the last occurred exception. More... | |
Variables | |
| EXCLUDE_ROBOT_TRACES = not os.getenv('ROBOT_INTERNAL_TRACES') | |
| tuple | Throwable = () |
| def robotide.lib.robot.utils.error.ErrorDetails | ( | exc_info = None, |
|
exclude_robot_traces = EXCLUDE_ROBOT_TRACES |
|||
| ) |
This factory returns an object that wraps the last occurred exception.
It has attributes `message`, `traceback` and `error`, where `message` contains type and message of the original error, `traceback` contains the traceback/stack trace and `error` contains the original error instance.
| def robotide.lib.robot.utils.error.get_error_details | ( | exclude_robot_traces = EXCLUDE_ROBOT_TRACES | ) |
| def robotide.lib.robot.utils.error.get_error_message | ( | ) |
| robotide.lib.robot.utils.error.EXCLUDE_ROBOT_TRACES = not os.getenv('ROBOT_INTERNAL_TRACES') |