From 8741b2e2724fabb25465c06c3a4f881d9aa28d67 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Mon, 18 Mar 2024 20:26:31 +0100 Subject: src: change generic exception types to be more explicit Replace exception types to be more explicit about the nature of the error. Improve the exception raising semantics by using the 'from' keyword, this wraps an older exception into a new one so it is still considered the same object. --- src/live/ogOperations.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/live/ogOperations.py') diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index d564ea9..d3b9d58 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -172,11 +172,11 @@ class OgLiveOperations: except: self._restartBrowser(self._url) if (not os.path.exists(image_path)): - raise ValueError(f'Image file {image_path} does not exist') + raise RuntimeError(f'Image file {image_path} does not exist') if (not tip_check_csum(repo, name)): - raise ValueError(f'checksum file {name}.full.sum is missing in repository {repo}') + raise RuntimeError(f'checksum file {name}.full.sum is missing in repository {repo}') - raise ValueError(f'Unexpected error when restoring image file {image_path}') + raise RuntimeError(f'Unexpected error when restoring image file {image_path}') self._restore_image(image_path, devpath) -- cgit v1.2.3-18-g5258