+ add FileNotFound Message
This commit is contained in:
@@ -139,6 +139,9 @@ class Gui:
|
||||
except ScopeNotFoundException as SnFe:
|
||||
logging.error(('||ScopeNotFoundExeption|| Failed to create Image with values = ' + str(values)))
|
||||
sg.popup_error((str(SnFe)))
|
||||
except FileNotFoundError as FnFe:
|
||||
logging.error(('||FileNotFoundError|| Failed to create Image with values = ' + str(values)))
|
||||
sg.popup_error((str(FnFe) + 'File ' + str(file_path) + ' or ' + str(output_path) + ' is not reachable.'))
|
||||
except:
|
||||
logging.error(
|
||||
('Failed to create Image with values = ' + str(values)))
|
||||
|
||||
Reference in New Issue
Block a user