There is no exception handling in the subprocess currently. Developing a new algorithm in such a case is somehow complex as there may be an error in the subprocess but nothing will be presented in the main process except that the program is stuck.
The best practice of exception handling in subprocesses needs to be considered. For now, adding try exception in the proper position will be a good temporary solution.
There is no exception handling in the subprocess currently. Developing a new algorithm in such a case is somehow complex as there may be an error in the subprocess but nothing will be presented in the main process except that the program is stuck.